ADC Project¶

Students of Group 3:

  • Enzo Chalatov - 54414
  • Daniel Câmara - 57966
  • Luís Reis - 64409
  • Duarte Gonçalves - 64465

Teacher:

  • André Falcão

Libraries¶

In [5]:
#Dependecy Libs
#!pip install networkx
#!pip install pandas
In [6]:
#from google.colab import drive
#drive.mount('/content/drive')
In [7]:
import networkx as nx
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import random as rnd
import os
import statistics

Dataset Analysis¶

Digraph Creation of Full Dataset¶

In [8]:
def datasetGraph(path):
    G = nx.DiGraph()
    with open(path) as f:
        for line in f:
            connection = line.strip().split()
            if len(connection) == 2:
                node1, node2 = connection[:2]
                G.add_edge(node1, node2)
                

    return G

path = './files/gplus_combined.txt'
G = datasetGraph(path)
print('Number of nodes:', G.number_of_nodes())
print('Number of edges:', G.number_of_edges())
Number of nodes: 107614
Number of edges: 13673453

Ego Network¶

Choosing¶

In [9]:
info_file_path = './files/gplus/'
#egoNet_OG = 106724181552911298818

def chooseEgoGraph(G,nodeNumber):
    # rnd.seed(nodeNumber)
    # egoNet = rnd.choice(list(G.nodes))
    # while not os.path.exists(f'{info_file_path}{egoNet}.egofeat'):
    #     egoNet = rnd.choice(list(G.nodes))
    # nodeNumber = egoNet

    ego_graph = nx.ego_graph(G, nodeNumber)
    ego_graph.name = nodeNumber
    print('EgoNet ID:', nodeNumber)
    print('Number of nodes in EgoNet:', ego_graph.number_of_nodes())
    print(f'Number of edges in EgoNet:  {ego_graph.number_of_edges()}\n')
    return ego_graph, nodeNumber

def isBloggertNetwork(egoNet):
    with open(f'{info_file_path}{egoNet}.egofeat', 'r') as f:
        egoFeatures = [line.strip().split() for line in f][0]

    # Load feature names
    with open(f'{info_file_path}{egoNet}.featnames', 'r') as f2:
        featnames = {line.strip().split()[0]: line.strip().split()[1:] for line in f2}
    
    value = [featnames[str(i)][0] for i, val in enumerate(egoFeatures) if val == '1']
    possible_jobs = ['job_title:blogger']
    for entry in value:
        if any(possible_job in entry for possible_job in possible_jobs):
            print(value)
            return True
    
    return False
    
    

egoGraphs = [
    #chooseEgoGraph(G,18), 
    #chooseEgoGraph(G,59),
    #chooseEgoGraph(G,42),
    #chooseEgoGraph(G,33),
    #chooseEgoGraph(G,25),
]


for node in G.nodes:
     if os.path.exists(f'{info_file_path}{node}.egofeat'):
         if isBloggertNetwork(node):
            egoGraphs.append(chooseEgoGraph(G, node))


print('Number of jornalist networks:', len(egoGraphs))
['gender:1', 'institution:', 'job_title:at', 'job_title:blogger', 'job_title:photographer,', 'last_name:thomas', 'place:Los']
EgoNet ID: 104987932455782713675
Number of nodes in EgoNet: 1755
Number of edges in EgoNet:  231095

['gender:1', 'job_title:american', 'job_title:at', 'job_title:blogger', 'job_title:blogger,', 'job_title:blogs,', 'job_title:columnist,', 'job_title:conservative', 'job_title:editor', 'job_title:editor-in-chief', 'job_title:entrepreneur.', 'job_title:liberal', 'job_title:of', 'job_title:partner', 'job_title:several', 'last_name:michael', 'place:Izmir,']
EgoNet ID: 106724181552911298818
Number of nodes in EgoNet: 3877
Number of edges in EgoNet:  526486

['gender:1', 'job_title:&', 'job_title:blogger,', 'job_title:creator', 'job_title:event', 'job_title:for', 'job_title:host', 'job_title:live', 'job_title:of', 'job_title:podcaster', 'job_title:youtuber,', 'job_title:|', 'place:Atlanta,', 'place:Knoxville,', 'place:Memphis,', 'place:Pittsburgh,', 'place:Washington,', 'university:University']
EgoNet ID: 108541235642523883716
Number of nodes in EgoNet: 1052
Number of edges in EgoNet:  55894

['gender:1', 'job_title:&', 'job_title:art', 'job_title:blogger,', 'job_title:business', 'job_title:consultant,', 'job_title:designer,', 'job_title:developer,', 'job_title:graphic', 'job_title:it', 'job_title:owner', 'job_title:painter,', 'job_title:sculptor,', 'job_title:small', 'job_title:toy', 'job_title:web', 'last_name:james']
EgoNet ID: 118107045405823607895
Number of nodes in EgoNet: 2438
Number of edges in EgoNet:  269049

['gender:1', 'job_title:all', 'job_title:amateur', 'job_title:and', 'job_title:blogger,', 'job_title:chef,', 'job_title:drink', 'job_title:food', 'job_title:lover', 'job_title:of', 'job_title:photographer,', 'job_title:things', 'last_name:jake']
EgoNet ID: 116825083494890429556
Number of nodes in EgoNet: 4622
Number of edges in EgoNet:  484935

['gender:2', 'job_title:activist,', 'job_title:blogger,', 'job_title:consultant,', 'job_title:online', 'job_title:poet,', 'job_title:political', 'job_title:writer,', 'place:Florence,']
EgoNet ID: 110809308822849680310
Number of nodes in EgoNet: 114
Number of edges in EgoNet:  733

['gender:1', 'institution:', 'job_title:blogger', 'job_title:photographer', 'last_name:steve']
EgoNet ID: 107489144252174167638
Number of nodes in EgoNet: 4388
Number of edges in EgoNet:  1460413

['gender:1', 'job_title:...', 'job_title:blogger,', 'job_title:gallery', 'job_title:webdesign,', 'job_title:youtuber,']
EgoNet ID: 101626577406833098387
Number of nodes in EgoNet: 4737
Number of edges in EgoNet:  438061

Number of jornalist networks: 8

Data Organization & Analysis¶

In [10]:
def read_file(nodeID, file_type):
    """
    Generalized function to read different types of files.
    @param nodeID (str): The ID of the node.
    @param file_type (str): The type of file to read
    @returns:list or dict: Parsed data based on file type.
    """
    file_path = f"{info_file_path}{nodeID}.{file_type}"
    try:
        with open(file_path, 'r') as file:
            if file_type in {'circles', 'feat', 'featnames'}:
                return {line.split()[0]: line.split()[1:] for line in file}
            elif file_type in {'edges'}:
                return [tuple(line.strip().split()) for line in file]
            elif file_type in {'egofeat', 'followers'}:
                return [line.strip().split() if file_type == 'egofeat' else line.strip() for line in file]
    except FileNotFoundError:
        print(f"File {file_path} not found.")
        return {} if file_type in {'circles', 'feat', 'featnames'} else []

Circles¶

In [11]:
def analyze_circles(egoNet):
    circles = read_file(egoNet, 'circles')
    print(f"-------Circles of EgoNode {egoNet}-------")
    print('Number of circles:', len(circles))
    circles_name = list(circles.keys())
    for i in range(len(circles_name)):
        print(f'Number of Nodes in Circle {i+1} : {len(circles[circles_name[i]])}')
    return circles, circles_name

circles = []
for graph in egoGraphs:
    circles.append(analyze_circles(graph[1]))
-------Circles of EgoNode 104987932455782713675-------
Number of circles: 3
Number of Nodes in Circle 1 : 18
Number of Nodes in Circle 2 : 491
Number of Nodes in Circle 3 : 487
-------Circles of EgoNode 106724181552911298818-------
Number of circles: 2
Number of Nodes in Circle 1 : 151
Number of Nodes in Circle 2 : 220
-------Circles of EgoNode 108541235642523883716-------
Number of circles: 2
Number of Nodes in Circle 1 : 27
Number of Nodes in Circle 2 : 54
-------Circles of EgoNode 118107045405823607895-------
Number of circles: 5
Number of Nodes in Circle 1 : 494
Number of Nodes in Circle 2 : 209
Number of Nodes in Circle 3 : 23
Number of Nodes in Circle 4 : 33
Number of Nodes in Circle 5 : 31
-------Circles of EgoNode 116825083494890429556-------
Number of circles: 3
Number of Nodes in Circle 1 : 40
Number of Nodes in Circle 2 : 68
Number of Nodes in Circle 3 : 28
-------Circles of EgoNode 110809308822849680310-------
Number of circles: 3
Number of Nodes in Circle 1 : 1
Number of Nodes in Circle 2 : 1
Number of Nodes in Circle 3 : 1
-------Circles of EgoNode 107489144252174167638-------
Number of circles: 3
Number of Nodes in Circle 1 : 320
Number of Nodes in Circle 2 : 314
Number of Nodes in Circle 3 : 214
-------Circles of EgoNode 101626577406833098387-------
Number of circles: 6
Number of Nodes in Circle 1 : 193
Number of Nodes in Circle 2 : 210
Number of Nodes in Circle 3 : 1
Number of Nodes in Circle 4 : 184
Number of Nodes in Circle 5 : 184
Number of Nodes in Circle 6 : 45

Followers¶

In [12]:
def analyze_followers(ego_graph,egoNet):
    followers = read_file(egoNet, 'followers')
    print(f"-------Followers of EgoNode {ego_graph.name}-------")
    print('Number of followers:', len(followers))
    print(f"Are the Number of Followers Superior to the Number of Nodes in the EgoNet? {len(followers) > ego_graph.number_of_nodes()}\n")
    return followers

followers = []
for graph in egoGraphs:
    followers.append(analyze_followers(graph[0], graph[1]))
-------Followers of EgoNode 104987932455782713675-------
Number of followers: 9856
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 106724181552911298818-------
Number of followers: 5587
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 108541235642523883716-------
Number of followers: 9779
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 118107045405823607895-------
Number of followers: 5156
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 116825083494890429556-------
Number of followers: 4483
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? False

-------Followers of EgoNode 110809308822849680310-------
Number of followers: 7180
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 107489144252174167638-------
Number of followers: 9760
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

-------Followers of EgoNode 101626577406833098387-------
Number of followers: 3388
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? False

Missing Followers¶
In [13]:
def nodesMissing(nodeList, ego_graph):
  missingNodes = []
  for node in nodeList:
    if node not in ego_graph.nodes():
      missingNodes.append(node)

  return missingNodes

def isNodeInfoStored(nodeList,EgoNet):
  nodesNotStored = []
  features = read_file(EgoNet, 'feat')
  for node in nodeList:
    if node not in features:
      nodesNotStored.append(node)
  return nodesNotStored

def percentageinGraph(missingList,List):
  return round(100 - (len(missingList)/len(List))*100,2)

def handlingMissingFollowers(ego_graph, egoNet):
  followersList = analyze_followers(ego_graph,egoNet)
  missingFollowers = nodesMissing(followersList, ego_graph)
  print(f'Number of missing followers:', len(missingFollowers))
  print(f'The graph is working with {percentageinGraph(missingFollowers,followersList)}% of the followers')
  print(f'Are the missing followers in the features file? {len(isNodeInfoStored(missingFollowers,egoNet)) == 0}\n')

for i in range(len(egoGraphs)):
  handlingMissingFollowers(egoGraphs[i][0], egoGraphs[i][1])
-------Followers of EgoNode 104987932455782713675-------
Number of followers: 9856
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 9840
The graph is working with 0.16% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 106724181552911298818-------
Number of followers: 5587
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 4848
The graph is working with 13.23% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 108541235642523883716-------
Number of followers: 9779
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 9601
The graph is working with 1.82% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 118107045405823607895-------
Number of followers: 5156
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 4130
The graph is working with 19.9% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 116825083494890429556-------
Number of followers: 4483
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? False

Number of missing followers: 3615
The graph is working with 19.36% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 110809308822849680310-------
Number of followers: 7180
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 7113
The graph is working with 0.93% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 107489144252174167638-------
Number of followers: 9760
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? True

Number of missing followers: 8395
The graph is working with 13.99% of the followers
Are the missing followers in the features file? False

-------Followers of EgoNode 101626577406833098387-------
Number of followers: 3388
Are the Number of Followers Superior to the Number of Nodes in the EgoNet? False

Number of missing followers: 1848
The graph is working with 45.45% of the followers
Are the missing followers in the features file? False

Nodes Duplication¶
In [14]:
from itertools import combinations

def duplicateNodes(checkList, checkList2):
    duplicateNode =[]
    for node in checkList:
        if node in checkList2:
            duplicateNode.append(node)
    return duplicateNode

def detectDuplicateNodes(followers, circles, circles_name):
    duplicates = {}

    # Circle + Followers
    for circle in circles_name:
        key = f'followers & {circle}'
        print(f'Checking for duplicates between {key}')
        value = duplicateNodes(followers, circles[circle])
        if value:
            duplicates[key] = value
    
    # All possible Circle + Circle combinations
    for r in range(2, len(circles_name) + 1):
        for comb in combinations(circles_name, r):
            key = " & ".join(comb)
            print(f'Checking for duplicates between circles: {key}')
            combined_nodes = [node for circle in comb for node in circles[circle]]
            value = duplicateNodes(combined_nodes, combined_nodes)
            if value:
                # Remove nodes from simpler combinations
                for node in value:
                    for k in list(duplicates.keys()):
                        if node in duplicates[k] and len(k.split(' & ')) < len(comb) + 1:
                            duplicates[k].remove(node)
                            if not duplicates[k]:
                                del duplicates[k]
                duplicates[key] = value

    # Followers + All possible Circle combinations
    for r in range(1, len(circles_name) + 1): 
        for comb in combinations(circles_name, r):
            key = f'followers & {" & ".join(comb)}'
            print(f'Checking for duplicates between {key}')
            combined_nodes = [node for circle in comb for node in circles[circle]]
            value = duplicateNodes(followers, combined_nodes)
            if value:
                # Remove nodes from simpler combinations
                for node in value:
                    for k in list(duplicates.keys()):
                        if node in duplicates[k] and len(k.split(' & ')) < len(comb) + 1:
                            duplicates[k].remove(node)
                            if not duplicates[k]:
                                del duplicates[k]
                duplicates[key] = value

    return duplicates

duplicate = []
for i in range(len(egoGraphs)):
    duplicate.append(detectDuplicateNodes(followers[i], circles[i][0], circles[i][1]))
Checking for duplicates between followers & 4Sbb7YJfZzq
Checking for duplicates between followers & C6ivUifF2Yc
Checking for duplicates between followers & NqLG8K6L3Zx
Checking for duplicates between circles: 4Sbb7YJfZzq & C6ivUifF2Yc
Checking for duplicates between circles: 4Sbb7YJfZzq & NqLG8K6L3Zx
Checking for duplicates between circles: C6ivUifF2Yc & NqLG8K6L3Zx
Checking for duplicates between circles: 4Sbb7YJfZzq & C6ivUifF2Yc & NqLG8K6L3Zx
Checking for duplicates between followers & 4Sbb7YJfZzq
Checking for duplicates between followers & C6ivUifF2Yc
Checking for duplicates between followers & NqLG8K6L3Zx
Checking for duplicates between followers & 4Sbb7YJfZzq & C6ivUifF2Yc
Checking for duplicates between followers & 4Sbb7YJfZzq & NqLG8K6L3Zx
Checking for duplicates between followers & C6ivUifF2Yc & NqLG8K6L3Zx
Checking for duplicates between followers & 4Sbb7YJfZzq & C6ivUifF2Yc & NqLG8K6L3Zx
Checking for duplicates between followers & MeTzBP1ZzWB
Checking for duplicates between followers & PfmNubx5wB1
Checking for duplicates between circles: MeTzBP1ZzWB & PfmNubx5wB1
Checking for duplicates between followers & MeTzBP1ZzWB
Checking for duplicates between followers & PfmNubx5wB1
Checking for duplicates between followers & MeTzBP1ZzWB & PfmNubx5wB1
Checking for duplicates between followers & 2zHAgD4xt3t
Checking for duplicates between followers & dEKEupTKE1r
Checking for duplicates between circles: 2zHAgD4xt3t & dEKEupTKE1r
Checking for duplicates between followers & 2zHAgD4xt3t
Checking for duplicates between followers & dEKEupTKE1r
Checking for duplicates between followers & 2zHAgD4xt3t & dEKEupTKE1r
Checking for duplicates between followers & 7cjRJeFxCSS
Checking for duplicates between followers & cS7h3jjBfFv
Checking for duplicates between followers & VCsPMzNpoQt
Checking for duplicates between followers & 4zM4mow65u3
Checking for duplicates between followers & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv
Checking for duplicates between circles: 7cjRJeFxCSS & VCsPMzNpoQt
Checking for duplicates between circles: 7cjRJeFxCSS & 4zM4mow65u3
Checking for duplicates between circles: 7cjRJeFxCSS & coqbF3tA4Dj
Checking for duplicates between circles: cS7h3jjBfFv & VCsPMzNpoQt
Checking for duplicates between circles: cS7h3jjBfFv & 4zM4mow65u3
Checking for duplicates between circles: cS7h3jjBfFv & coqbF3tA4Dj
Checking for duplicates between circles: VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between circles: VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between circles: 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & 4zM4mow65u3
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between circles: 7cjRJeFxCSS & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between circles: cS7h3jjBfFv & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between circles: cS7h3jjBfFv & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between circles: 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS
Checking for duplicates between followers & cS7h3jjBfFv
Checking for duplicates between followers & VCsPMzNpoQt
Checking for duplicates between followers & 4zM4mow65u3
Checking for duplicates between followers & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv
Checking for duplicates between followers & 7cjRJeFxCSS & VCsPMzNpoQt
Checking for duplicates between followers & 7cjRJeFxCSS & 4zM4mow65u3
Checking for duplicates between followers & 7cjRJeFxCSS & coqbF3tA4Dj
Checking for duplicates between followers & cS7h3jjBfFv & VCsPMzNpoQt
Checking for duplicates between followers & cS7h3jjBfFv & 4zM4mow65u3
Checking for duplicates between followers & cS7h3jjBfFv & coqbF3tA4Dj
Checking for duplicates between followers & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between followers & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between followers & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & 4zM4mow65u3
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between followers & 7cjRJeFxCSS & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between followers & cS7h3jjBfFv & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between followers & cS7h3jjBfFv & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 7cjRJeFxCSS & cS7h3jjBfFv & VCsPMzNpoQt & 4zM4mow65u3 & coqbF3tA4Dj
Checking for duplicates between followers & 6iL52nesi77
Checking for duplicates between followers & SXH9aAuvcZD
Checking for duplicates between followers & BGfdj53iknF
Checking for duplicates between circles: 6iL52nesi77 & SXH9aAuvcZD
Checking for duplicates between circles: 6iL52nesi77 & BGfdj53iknF
Checking for duplicates between circles: SXH9aAuvcZD & BGfdj53iknF
Checking for duplicates between circles: 6iL52nesi77 & SXH9aAuvcZD & BGfdj53iknF
Checking for duplicates between followers & 6iL52nesi77
Checking for duplicates between followers & SXH9aAuvcZD
Checking for duplicates between followers & BGfdj53iknF
Checking for duplicates between followers & 6iL52nesi77 & SXH9aAuvcZD
Checking for duplicates between followers & 6iL52nesi77 & BGfdj53iknF
Checking for duplicates between followers & SXH9aAuvcZD & BGfdj53iknF
Checking for duplicates between followers & 6iL52nesi77 & SXH9aAuvcZD & BGfdj53iknF
Checking for duplicates between followers & ggrrXQPfLK1
Checking for duplicates between followers & Kw5v5ydX3os
Checking for duplicates between followers & d4MgrH25SCw
Checking for duplicates between circles: ggrrXQPfLK1 & Kw5v5ydX3os
Checking for duplicates between circles: ggrrXQPfLK1 & d4MgrH25SCw
Checking for duplicates between circles: Kw5v5ydX3os & d4MgrH25SCw
Checking for duplicates between circles: ggrrXQPfLK1 & Kw5v5ydX3os & d4MgrH25SCw
Checking for duplicates between followers & ggrrXQPfLK1
Checking for duplicates between followers & Kw5v5ydX3os
Checking for duplicates between followers & d4MgrH25SCw
Checking for duplicates between followers & ggrrXQPfLK1 & Kw5v5ydX3os
Checking for duplicates between followers & ggrrXQPfLK1 & d4MgrH25SCw
Checking for duplicates between followers & Kw5v5ydX3os & d4MgrH25SCw
Checking for duplicates between followers & ggrrXQPfLK1 & Kw5v5ydX3os & d4MgrH25SCw
Checking for duplicates between followers & 5yvXLNLpZF3
Checking for duplicates between followers & FxBVxy5Yara
Checking for duplicates between followers & gbdaZKdKcqe
Checking for duplicates between circles: 5yvXLNLpZF3 & FxBVxy5Yara
Checking for duplicates between circles: 5yvXLNLpZF3 & gbdaZKdKcqe
Checking for duplicates between circles: FxBVxy5Yara & gbdaZKdKcqe
Checking for duplicates between circles: 5yvXLNLpZF3 & FxBVxy5Yara & gbdaZKdKcqe
Checking for duplicates between followers & 5yvXLNLpZF3
Checking for duplicates between followers & FxBVxy5Yara
Checking for duplicates between followers & gbdaZKdKcqe
Checking for duplicates between followers & 5yvXLNLpZF3 & FxBVxy5Yara
Checking for duplicates between followers & 5yvXLNLpZF3 & gbdaZKdKcqe
Checking for duplicates between followers & FxBVxy5Yara & gbdaZKdKcqe
Checking for duplicates between followers & 5yvXLNLpZF3 & FxBVxy5Yara & gbdaZKdKcqe
Checking for duplicates between followers & 4obiTa7Mij4
Checking for duplicates between followers & Z8Aff2yk4vM
Checking for duplicates between followers & Wok7pJ35m31
Checking for duplicates between followers & 8PfEPYoAosZ
Checking for duplicates between followers & S4QfCsQf7wJ
Checking for duplicates between followers & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31
Checking for duplicates between circles: 4obiTa7Mij4 & 8PfEPYoAosZ
Checking for duplicates between circles: 4obiTa7Mij4 & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31
Checking for duplicates between circles: Z8Aff2yk4vM & 8PfEPYoAosZ
Checking for duplicates between circles: Z8Aff2yk4vM & S4QfCsQf7wJ
Checking for duplicates between circles: Z8Aff2yk4vM & 21NwTtDWYLT
Checking for duplicates between circles: Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between circles: Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between circles: Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between circles: 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: Z8Aff2yk4vM & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between circles: 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4
Checking for duplicates between followers & Z8Aff2yk4vM
Checking for duplicates between followers & Wok7pJ35m31
Checking for duplicates between followers & 8PfEPYoAosZ
Checking for duplicates between followers & S4QfCsQf7wJ
Checking for duplicates between followers & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31
Checking for duplicates between followers & 4obiTa7Mij4 & 8PfEPYoAosZ
Checking for duplicates between followers & 4obiTa7Mij4 & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31
Checking for duplicates between followers & Z8Aff2yk4vM & 8PfEPYoAosZ
Checking for duplicates between followers & Z8Aff2yk4vM & S4QfCsQf7wJ
Checking for duplicates between followers & Z8Aff2yk4vM & 21NwTtDWYLT
Checking for duplicates between followers & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between followers & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between followers & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between followers & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & Z8Aff2yk4vM & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT
Checking for duplicates between followers & 4obiTa7Mij4 & Z8Aff2yk4vM & Wok7pJ35m31 & 8PfEPYoAosZ & S4QfCsQf7wJ & 21NwTtDWYLT

Edges¶

In [15]:
def analyze_edges(egoNet, ego_graph):
    edges = read_file(egoNet, 'edges')
    print(f"-------Edges of EgoNode {ego_graph.name}-------")
    print('Number of Edges:', len(edges))
    print(f"Are the Number of Edges Equal to the Number of Edges in the EgoNet? {len(edges) == ego_graph.number_of_edges()}")
    print(f"Are the Number of Edges Inferior to the Number of Edges in the EgoNet? {len(edges) < ego_graph.number_of_edges()}\n")
    return edges
Missing Edges¶
In [12]:
def edgeMissing(egoNet, ego_graph):
  missingEdges = []
  edges = analyze_edges(egoNet, ego_graph)
  for edge in ego_graph.edges():
    if edge not in edges:
      missingEdges.append(edge)
  
  print("-------Missing Edges-------")
  print(f'Number of Missing Edges:', len(missingEdges))
  print(f'The graph is working with {percentageinGraph(missingEdges,edges)}% of the edges\n')
  return missingEdges

def handlingMissingEdges(ego_graph,egoNet):
  missing_edges = edgeMissing(egoNet, ego_graph)

  #DONT REMOVE COMMENT IT WILL BREAK THE INFORMATION
  # for edge in missing_edges:
  #   features = read_file(egoNet, 'feat')
  #   if edge[1] not in features or edge[0] not in features:
  #     #if there isn't information on such node, we remove the edge and the node from the graph
  #     if ego_graph.has_edge(edge[0], edge[1]):
  #       ego_graph.remove_edge(edge[0], edge[1]) 
  # print(f'Number of edges after handling missing edges: {ego_graph.number_of_edges()}')
  # print(f'Number of nodes after handling missing edges: {ego_graph.number_of_nodes()}\n')    


for i in range(len(egoGraphs)):
  handlingMissingEdges(egoGraphs[i][0], egoGraphs[i][1])
-------Edges of EgoNode 104987932455782713675-------
Number of Edges: 228521
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 2574
The graph is working with 98.87% of the edges

-------Edges of EgoNode 106724181552911298818-------
Number of Edges: 521294
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 5192
The graph is working with 99.0% of the edges

-------Edges of EgoNode 108541235642523883716-------
Number of Edges: 54555
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 1339
The graph is working with 97.55% of the edges

-------Edges of EgoNode 118107045405823607895-------
Number of Edges: 266035
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 3014
The graph is working with 98.87% of the edges

-------Edges of EgoNode 116825083494890429556-------
Number of Edges: 479750
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 5185
The graph is working with 98.92% of the edges

-------Edges of EgoNode 110809308822849680310-------
Number of Edges: 580
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 153
The graph is working with 73.62% of the edges

-------Edges of EgoNode 107489144252174167638-------
Number of Edges: 1454369
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 6044
The graph is working with 99.58% of the edges

-------Edges of EgoNode 101626577406833098387-------
Number of Edges: 432940
Are the Number of Edges Equal to the Number of Edges in the EgoNet? False
Are the Number of Edges Inferior to the Number of Edges in the EgoNet? True

-------Missing Edges-------
Number of Missing Edges: 5121
The graph is working with 98.82% of the edges

Features¶

In [16]:
def analyze_features(egoNet):
    egoFeatures = read_file(egoNet, 'egofeat')
    features = read_file(egoNet, 'feat')
    featnames = read_file(egoNet, 'featnames')
    print(f'Number of features in Ego {egoNet} : {len(features)}')
    #print(f'{egoNet} EgoFeatures: {egoFeatures}')
    
    return egoFeatures,features,featnames
Decoding Features¶
In [17]:
def decodeFeaturesNodes(ego_graph,egoNet):
    egoFeatures, features, featnames = analyze_features(egoNet)
    node_features = {}
    for node in ego_graph.nodes:
        if node == egoNet:
            node_features[node] = [featnames[str(i)][0] for i, val in enumerate(egoFeatures[0]) if val == '1']
        else:
            if node in features:
                node_features[node] = [
                    featnames[str(i)][0] for i, val in enumerate(features[node]) if val == '1'
                ]
            else:
                node_features[node] = []
            
    nx.set_node_attributes(ego_graph, node_features, 'features')
    print(f"Node {egoNet} features: {ego_graph.nodes[egoNet]['features']}\n")

for i in range(len(egoGraphs)):
    decodeFeaturesNodes(egoGraphs[i][0], egoGraphs[i][1])
Number of features in Ego 104987932455782713675 : 1754
Node 104987932455782713675 features: ['gender:1', 'institution:', 'job_title:at', 'job_title:blogger', 'job_title:photographer,', 'last_name:thomas', 'place:Los']

Number of features in Ego 106724181552911298818 : 3873
Node 106724181552911298818 features: ['gender:1', 'job_title:american', 'job_title:at', 'job_title:blogger', 'job_title:blogger,', 'job_title:blogs,', 'job_title:columnist,', 'job_title:conservative', 'job_title:editor', 'job_title:editor-in-chief', 'job_title:entrepreneur.', 'job_title:liberal', 'job_title:of', 'job_title:partner', 'job_title:several', 'last_name:michael', 'place:Izmir,']

Number of features in Ego 108541235642523883716 : 1049
Node 108541235642523883716 features: ['gender:1', 'job_title:&', 'job_title:blogger,', 'job_title:creator', 'job_title:event', 'job_title:for', 'job_title:host', 'job_title:live', 'job_title:of', 'job_title:podcaster', 'job_title:youtuber,', 'job_title:|', 'place:Atlanta,', 'place:Knoxville,', 'place:Memphis,', 'place:Pittsburgh,', 'place:Washington,', 'university:University']

Number of features in Ego 118107045405823607895 : 2437
Node 118107045405823607895 features: ['gender:1', 'job_title:&', 'job_title:art', 'job_title:blogger,', 'job_title:business', 'job_title:consultant,', 'job_title:designer,', 'job_title:developer,', 'job_title:graphic', 'job_title:it', 'job_title:owner', 'job_title:painter,', 'job_title:sculptor,', 'job_title:small', 'job_title:toy', 'job_title:web', 'last_name:james']

Number of features in Ego 116825083494890429556 : 4618
Node 116825083494890429556 features: ['gender:1', 'job_title:all', 'job_title:amateur', 'job_title:and', 'job_title:blogger,', 'job_title:chef,', 'job_title:drink', 'job_title:food', 'job_title:lover', 'job_title:of', 'job_title:photographer,', 'job_title:things', 'last_name:jake']

Number of features in Ego 110809308822849680310 : 113
Node 110809308822849680310 features: ['gender:2', 'job_title:activist,', 'job_title:blogger,', 'job_title:consultant,', 'job_title:online', 'job_title:poet,', 'job_title:political', 'job_title:writer,', 'place:Florence,']

Number of features in Ego 107489144252174167638 : 4386
Node 107489144252174167638 features: ['gender:1', 'institution:', 'job_title:blogger', 'job_title:photographer', 'last_name:steve']

Number of features in Ego 101626577406833098387 : 4731
Node 101626577406833098387 features: ['gender:1', 'job_title:...', 'job_title:blogger,', 'job_title:gallery', 'job_title:webdesign,', 'job_title:youtuber,']

Saving in CSV¶

In [18]:
import csv

def saveAnalysis(ego_graph, egoNet, i):
    folder_path = f'./output/{egoNet}'
    os.makedirs(folder_path, exist_ok=True)
    
    # Save circles information
    with open(f'{folder_path}/circles.csv', mode='w', newline='') as file:
        writer = csv.writer(file)
        writer.writerow(['Circle Name', 'Node ID', 'Features'])
        for circle_name, members in circles[i][0].items():
            for member in members:
                if member in ego_graph.nodes:
                    features = ego_graph.nodes[member].get('features', 'N/A')
                else:
                    features = 'N/A'
                writer.writerow([circle_name, member, features])

    # Save followers information
    with open(f'{folder_path}/followers.csv', mode='w', newline='') as file:
        writer = csv.writer(file)
        writer.writerow(['Node ID', 'Features'])
        for follower in followers[i]:
            if follower in ego_graph.nodes:
                features = ego_graph.nodes[follower].get('features', 'N/A')
            else:
                features = 'N/A'
            writer.writerow([follower, features])

for i in range(len(egoGraphs)):
    saveAnalysis(egoGraphs[i][0], egoGraphs[i][1], i)

Ego Network Graph¶

In [19]:
def plot_egoGraph(ego_graph, egoNode, circles, followers, duplicates=None):

    # Calculate positions for the main ego graph
    pos = nx.spring_layout(ego_graph, seed=42)

    # Ensure all nodes have positions
    for node in ego_graph.nodes:
        if node not in pos:
            pos[node] = np.random.rand(2)

    # Create subplots
    fig, axes = plt.subplots(1, 2, figsize=(18, 6))

    # Plot the entire ego graph on the first axis with red nodes
    nx.draw(ego_graph, pos, node_color='red', edge_color='black', node_size=100, ax=axes[0])
    nx.draw_networkx_nodes(ego_graph, pos, nodelist=[egoNode], node_color='green', node_size=100, ax=axes[0], label=egoNode)
    axes[0].set_title(f"Full Ego Network: {egoNode}")
    axes[0].legend()

    # Plot only the circles nodes with different colors and their edges on the second axis
    circle_colors = [plt.get_cmap('rainbow')(i) for i in np.linspace(0, 1, len(circles))]
    for idx, (circle_name, members) in enumerate(circles.items()):
        nx.draw_networkx_nodes(ego_graph, pos, nodelist=members, node_color=circle_colors[idx], node_size=100, ax=axes[1], label=circle_name)
        nx.draw_networkx_edges(ego_graph, pos, edgelist=ego_graph.subgraph(members).edges(), alpha=0.5, ax=axes[1])
    axes[1].set_title(f"Circles in Ego Network: {egoNode}")
    axes[1].legend()

    # Save the plot
    folder_path = f'./output/{egoNode}'
    os.makedirs(folder_path, exist_ok=True)
    plt.savefig(f'{folder_path}/egoGraph.png')

    plt.show()

for i in range(len(egoGraphs)):
    # COMMENT THIS LINE ONLY IF HAVE 16+ GB OF RAM
    if egoGraphs[i][1] == '107489144252174167638':
        continue
    plot_egoGraph(egoGraphs[i][0], egoGraphs[i][1], circles[i][0], followers[i], duplicate[i])
/home/w4ter/anaconda3/envs/ADC/lib/python3.11/site-packages/networkx/drawing/nx_pylab.py:437: UserWarning: *c* argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping will have precedence in case its length matches with *x* & *y*.  Please use the *color* keyword-argument or provide a 2D array with a single row if you intend to specify the same RGB or RGBA value for all points.
  node_collection = ax.scatter(
/tmp/ipykernel_7198/1565357515.py:31: UserWarning: Creating legend with loc="best" can be slow with large amounts of data.
  plt.savefig(f'{folder_path}/egoGraph.png')
/home/w4ter/anaconda3/envs/ADC/lib/python3.11/site-packages/IPython/core/pylabtools.py:170: UserWarning: Creating legend with loc="best" can be slow with large amounts of data.
  fig.canvas.print_figure(bytes_io, **kw)
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image

Deep Analysis¶

In [20]:
def moreGraphInfo(ego_graph):
    print(f"Is the Graph Directed: {nx.is_directed(ego_graph)}")
    print(f"Is the Graph Weighted: {nx.is_weighted(ego_graph)}")

    print(f"Is this Network Strongly Connected: {nx.is_strongly_connected(ego_graph)}")
    print(f"Is this Network Weakly Connected: {nx.is_weakly_connected(ego_graph)}")

    strongly_connected_components = list(nx.strongly_connected_components(ego_graph))
    weakly_connected_components = list(nx.weakly_connected_components(ego_graph))
    print(f"Number of Strongly Connected Components: {len(strongly_connected_components)}")
    print(f"Number of Weakly Connected Components: {len(weakly_connected_components)}\n")

    return strongly_connected_components, weakly_connected_components


def graphStatistics(name,value):
    print(f"Mean of {name}: {statistics.mean(value)}")
    print(f"Median of {name}: {statistics.median(value)}\n")

def graphHistogram(name, value, graphName):
    folder_path = f'./output/{graphName}'
    os.makedirs(folder_path, exist_ok=True)
    plt.figure(figsize=(10, 6))
    plt.hist(value, bins=30, label=graphName, color='skyblue', edgecolor='black')
    plt.xlabel(name)
    plt.ylabel('Frequency')
    plt.title(f'Histogram of {name}')
    plt.legend()
    plt.savefig(f'{folder_path}/{name}_histogram.png')
    #plt.show()

components = []
for i in range(len(egoGraphs)):
    components.append(moreGraphInfo(egoGraphs[i][0]))
Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 636
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 1277
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 388
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 848
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 1635
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 55
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 1553
Number of Weakly Connected Components: 1

Is the Graph Directed: True
Is the Graph Weighted: False
Is this Network Strongly Connected: False
Is this Network Weakly Connected: True
Number of Strongly Connected Components: 1625
Number of Weakly Connected Components: 1

Density¶

In [21]:
def graphDensity(ego_graph):
    density = nx.density(ego_graph)
    print(f"Graphs Density on Graph {ego_graph.name}: {density}")

for i in range(len(egoGraphs)):
    graphDensity(egoGraphs[i][0])
Graphs Density on Graph 104987932455782713675: 0.07507301178908933
Graphs Density on Graph 106724181552911298818: 0.035035414325919334
Graphs Density on Graph 108541235642523883716: 0.05055297688603647
Graphs Density on Graph 118107045405823607895: 0.04528372577130733
Graphs Density on Graph 116825083494890429556: 0.022704796860343785
Graphs Density on Graph 110809308822849680310: 0.05690110231330539
Graphs Density on Graph 107489144252174167638: 0.07586499558756822
Graphs Density on Graph 101626577406833098387: 0.019526279961088383

Diameter¶

In [22]:
#print(f"Graph Diameter: {nx.diameter(ego_graph)}")
#ERROR Because Network is not strongly Connected

Average Clustering Coeficient¶

In [23]:
def graphAvgClusteringCoef(ego_graph):
    print(f"Average Clustering Coeficient on Graph {ego_graph.name}: {nx.average_clustering(ego_graph)}")

for i in range(len(egoGraphs)):
    graphAvgClusteringCoef(egoGraphs[i][0])
Average Clustering Coeficient on Graph 104987932455782713675: 0.43443233959012434
Average Clustering Coeficient on Graph 106724181552911298818: 0.30645083439051085
Average Clustering Coeficient on Graph 108541235642523883716: 0.34806902562909475
Average Clustering Coeficient on Graph 118107045405823607895: 0.3038925312390119
Average Clustering Coeficient on Graph 116825083494890429556: 0.3098169339237928
Average Clustering Coeficient on Graph 110809308822849680310: 0.4206854177160152
Average Clustering Coeficient on Graph 107489144252174167638: 0.3698957824320208
Average Clustering Coeficient on Graph 101626577406833098387: 0.2889177242724621

Assortivity¶

In [24]:
def getAssortivity(ego_graph):
    assortivityCoefficient = nx.degree_assortativity_coefficient(ego_graph)
    
    # Convert list of features to a tuple to make it hashable
    for node in ego_graph.nodes:
        ego_graph.nodes[node]['features_tuple'] = tuple(ego_graph.nodes[node]['features'])
    
    assortivityAttribute = nx.attribute_assortativity_coefficient(ego_graph, 'features_tuple')

    print(f"Assortivity Coefficient: {assortivityCoefficient}")
    print(f"Assortivity Attribute: {assortivityAttribute}\n")

for i in range(len(egoGraphs)):
    print(f"Assortivity of EgoNet {egoGraphs[i][1]}")
    getAssortivity(egoGraphs[i][0])
Assortivity of EgoNet 104987932455782713675
Assortivity Coefficient: -0.23135231700138234
Assortivity Attribute: -0.0004159885310161308

Assortivity of EgoNet 106724181552911298818
Assortivity Coefficient: -0.13732643970938654
Assortivity Attribute: 0.0020466401993961304

Assortivity of EgoNet 108541235642523883716
Assortivity Coefficient: -0.20706441333076897
Assortivity Attribute: -0.001286013716103776

Assortivity of EgoNet 118107045405823607895
Assortivity Coefficient: -0.13682406056777383
Assortivity Attribute: -8.35784176043659e-05

Assortivity of EgoNet 116825083494890429556
Assortivity Coefficient: -0.11092567039910355
Assortivity Attribute: 0.007151691017163368

Assortivity of EgoNet 110809308822849680310
Assortivity Coefficient: -0.3796422148750427
Assortivity Attribute: -0.01779535909241762

Assortivity of EgoNet 107489144252174167638
Assortivity Coefficient: -0.15093451386461487
Assortivity Attribute: -0.00023134878541374712

Assortivity of EgoNet 101626577406833098387
Assortivity Coefficient: -0.09187231934676877
Assortivity Attribute: 0.004708121705837781

Reciprocity¶

In [25]:
def reciprocity(ego_graph, egoNet):
    reciprocity = nx.reciprocity(ego_graph)
    print(f"Reciprocity of EgoNet {egoNet}: {reciprocity}\n")

for i in range(len(egoGraphs)):
    reciprocity(egoGraphs[i][0], egoGraphs[i][1])
Reciprocity of EgoNet 104987932455782713675: 0.22334537744217747

Reciprocity of EgoNet 106724181552911298818: 0.19832626128709976

Reciprocity of EgoNet 108541235642523883716: 0.18889326224639497

Reciprocity of EgoNet 118107045405823607895: 0.26378838055521486

Reciprocity of EgoNet 116825083494890429556: 0.20334271603410767

Reciprocity of EgoNet 110809308822849680310: 0.4256480218281037

Reciprocity of EgoNet 107489144252174167638: 0.2790005293023275

Reciprocity of EgoNet 101626577406833098387: 0.25221145000353834

Centralities¶

Degree Centrality¶
In [26]:
def graphDegreeCentrality(ego_graph):
    degree_centrality = nx.degree_centrality(ego_graph)
    nx.set_node_attributes(ego_graph, degree_centrality, 'degree_centrality')

    #giving a list of the nodes ordered by their degree centrality
    sorted_degree_centrality = [node for node, _ in sorted(degree_centrality.items(), key=lambda x: x[1], reverse=True)]
    
    print(f"Degree Centrality of EgoNode {ego_graph.name}: {ego_graph.nodes[ego_graph.name]['degree_centrality']}")
    graphStatistics('Degree Centrality',list(degree_centrality.values()))
    graphHistogram('Degree Centrality',list(degree_centrality.values()),ego_graph.name)
    return sorted_degree_centrality

sortedDegreeCentralities = [] 
for i in range(len(egoGraphs)):
    sortedDegreeCentralities.append(graphDegreeCentrality(egoGraphs[i][0]))
    print (f" EgoNet {egoGraphs[i][1]} Max Degree Centrality: {egoGraphs[i][0].nodes[sortedDegreeCentralities[i][0]]['degree_centrality']}\n")
Degree Centrality of EgoNode 104987932455782713675: 1.467502850627138
Mean of Degree Centrality: 0.15014602357817866
Median of Degree Centrality: 0.09578107183580388

 EgoNet 104987932455782713675 Max Degree Centrality: 1.467502850627138

Degree Centrality of EgoNode 106724181552911298818: 1.1011351909184726
Mean of Degree Centrality: 0.07007082865183867
Median of Degree Centrality: 0.04489164086687306

 EgoNet 106724181552911298818 Max Degree Centrality: 1.1011351909184726

Degree Centrality of EgoNode 108541235642523883716: 1.2064700285442436
Mean of Degree Centrality: 0.10110595377207296
Median of Degree Centrality: 0.06517602283539486

 EgoNet 108541235642523883716 Max Degree Centrality: 1.2064700285442436

Degree Centrality of EgoNode 118107045405823607895: 1.236766516208453
Mean of Degree Centrality: 0.09056745154261465
Median of Degree Centrality: 0.057447681575707836

 EgoNet 118107045405823607895 Max Degree Centrality: 1.236766516208453

Degree Centrality of EgoNode 116825083494890429556: 1.1149101925990046
Mean of Degree Centrality: 0.04540959372068757
Median of Degree Centrality: 0.024561783163817352

 EgoNet 116825083494890429556 Max Degree Centrality: 1.1149101925990046

Degree Centrality of EgoNode 110809308822849680310: 1.3539823008849556
Mean of Degree Centrality: 0.11380220462661077
Median of Degree Centrality: 0.061946902654867256

 EgoNet 110809308822849680310 Max Degree Centrality: 1.3539823008849556

Degree Centrality of EgoNode 107489144252174167638: 1.3300661043993618
Mean of Degree Centrality: 0.15172999117513644
Median of Degree Centrality: 0.10485525416001824

 EgoNet 107489144252174167638 Max Degree Centrality: 1.3300661043993618

Degree Centrality of EgoNode 101626577406833098387: 1.0268158783783785
Mean of Degree Centrality: 0.03905255992217677
Median of Degree Centrality: 0.024915540540540543

 EgoNet 101626577406833098387 Max Degree Centrality: 1.0268158783783785

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Eigenvector Centrality¶
In [27]:
def graphEigenCentrality(ego_graph):
    eigenvector_centrality = nx.eigenvector_centrality(ego_graph)
    nx.set_node_attributes(ego_graph, eigenvector_centrality, 'eigenvector_centrality')

    #giving a list of the nodes ordered by their eigenvector centrality
    sorted_eigenvector_centrality = [node for node, _ in sorted(eigenvector_centrality.items(), key=lambda x: x[1], reverse=True)]

    print(f"Eigenvector Centrality of EgoNode {ego_graph.name}: {ego_graph.nodes[ego_graph.name]['eigenvector_centrality']}")
    graphStatistics('Eigenvector Centrality',list(eigenvector_centrality.values()))
    graphHistogram('Eigenvector Centrality',list(eigenvector_centrality.values()),ego_graph.name)
    return sorted_eigenvector_centrality

sortedEigenvectorCentralities = []
for i in range(len(egoGraphs)):
    sortedEigenvectorCentralities.append(graphEigenCentrality(egoGraphs[i][0]))
    print (f" EgoNet {egoGraphs[i][1]} Max Eigenvector: {egoGraphs[i][0].nodes[sortedEigenvectorCentralities[i][0]]['eigenvector_centrality']}\n")
Eigenvector Centrality of EgoNode 104987932455782713675: 0.09321836586819218
Mean of Eigenvector Centrality: 0.018214821499250085
Median of Eigenvector Centrality: 0.014910426392942894

 EgoNet 104987932455782713675 Max Eigenvector: 0.09321836586819218

Eigenvector Centrality of EgoNode 106724181552911298818: 0.014270660811579973
Mean of Eigenvector Centrality: 0.010001559368227974
Median of Eigenvector Centrality: 0.004718825696258835

 EgoNet 106724181552911298818 Max Eigenvector: 0.10262175343993196

Eigenvector Centrality of EgoNode 108541235642523883716: 0.04980075083984718
Mean of Eigenvector Centrality: 0.018990905228269368
Median of Eigenvector Centrality: 0.009337540675773703

 EgoNet 108541235642523883716 Max Eigenvector: 0.14985676321624822

Eigenvector Centrality of EgoNode 118107045405823607895: 0.0633379619641735
Mean of Eigenvector Centrality: 0.01382914069116326
Median of Eigenvector Centrality: 0.008252793447306544

 EgoNet 118107045405823607895 Max Eigenvector: 0.09117165586369774

Eigenvector Centrality of EgoNode 116825083494890429556: 0.015702898577662956
Mean of Eigenvector Centrality: 0.007577014706528176
Median of Eigenvector Centrality: 0.0017067636616451588

 EgoNet 116825083494890429556 Max Eigenvector: 0.0919942520470291

Eigenvector Centrality of EgoNode 110809308822849680310: 0.30085056515233466
Mean of Eigenvector Centrality: 0.0741276982811998
Median of Eigenvector Centrality: 0.048037301105237684

 EgoNet 110809308822849680310 Max Eigenvector: 0.30085056515233466

Eigenvector Centrality of EgoNode 107489144252174167638: 0.040557979770205366
Mean of Eigenvector Centrality: 0.011024481052623835
Median of Eigenvector Centrality: 0.007423733235974454

 EgoNet 107489144252174167638 Max Eigenvector: 0.05428738194247621

Eigenvector Centrality of EgoNode 101626577406833098387: 0.002986314709410585
Mean of Eigenvector Centrality: 0.005922918140168081
Median of Eigenvector Centrality: 0.0012997635764437588

 EgoNet 101626577406833098387 Max Eigenvector: 0.09666244124857525

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Closeness Centrality¶
In [28]:
def graphClosenessCentrality(ego_graph):
    closeness_centrality = nx.closeness_centrality(ego_graph)
    nx.set_node_attributes(ego_graph, closeness_centrality, 'closeness_centrality')

    #giving a list of the nodes ordered by their eigenvector centrality
    sorted_closeness_centrality = [node for node, _ in sorted(closeness_centrality.items(), key=lambda x: x[1], reverse=True)]
    
    print(f"Closeness Centrality of EgoNode {ego_graph.name}: {ego_graph.nodes[ego_graph.name]['closeness_centrality']}")
    graphStatistics('Closeness Centrality',list(closeness_centrality.values()))
    graphHistogram('Closeness Centrality',list(closeness_centrality.values()),ego_graph.name)
    return sorted_closeness_centrality


sortedClosenessCentralities = []
for i in range(len(egoGraphs)):
    sortedClosenessCentralities.append(graphClosenessCentrality(egoGraphs[i][0]))
    print (f" EgoNet {egoGraphs[i][1]} Max Closeness Centrality: {egoGraphs[i][0].nodes[sortedClosenessCentralities[i][0]]['closeness_centrality']}\n")
Closeness Centrality of EgoNode 104987932455782713675: 0.49783042227449037
Mean of Closeness Centrality: 0.3154549043818193
Median of Closeness Centrality: 0.3110626690813155

 EgoNet 104987932455782713675 Max Closeness Centrality: 0.49783042227449037

Closeness Centrality of EgoNode 106724181552911298818: 0.3387829489839953
Mean of Closeness Centrality: 0.29043377055834807
Median of Closeness Centrality: 0.2945975682579616

 EgoNet 106724181552911298818 Max Closeness Centrality: 0.46879286780914253

Closeness Centrality of EgoNode 108541235642523883716: 0.349876086081884
Mean of Closeness Centrality: 0.2733079542486225
Median of Closeness Centrality: 0.27044335550649845

 EgoNet 108541235642523883716 Max Closeness Centrality: 0.4284999256508466

Closeness Centrality of EgoNode 118107045405823607895: 0.38367590001443874
Mean of Closeness Centrality: 0.2938870092915525
Median of Closeness Centrality: 0.2915677380498567

 EgoNet 118107045405823607895 Max Closeness Centrality: 0.41457287753963995

Closeness Centrality of EgoNode 116825083494890429556: 0.325315318484351
Mean of Closeness Centrality: 0.25712276177995613
Median of Closeness Centrality: 0.2517377862192097

 EgoNet 116825083494890429556 Max Closeness Centrality: 0.3855959006359353

Closeness Centrality of EgoNode 110809308822849680310: 0.385066371681416
Mean of Closeness Centrality: 0.2500552648535475
Median of Closeness Centrality: 0.24010168881828464

 EgoNet 110809308822849680310 Max Closeness Centrality: 0.385066371681416

Closeness Centrality of EgoNode 107489144252174167638: 0.4231073752968434
Mean of Closeness Centrality: 0.3179686561323697
Median of Closeness Centrality: 0.31647405834453

 EgoNet 107489144252174167638 Max Closeness Centrality: 0.48634322671498054

Closeness Centrality of EgoNode 101626577406833098387: 0.27647489991176494
Mean of Closeness Centrality: 0.2480682214072273
Median of Closeness Centrality: 0.24354865288170033

 EgoNet 101626577406833098387 Max Closeness Centrality: 0.3772103980705636

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Betweenness Centrality¶
In [29]:
def graphBetweennessCentrality(ego_graph):
    betweenness_centrality = nx.betweenness_centrality(ego_graph)
    nx.set_node_attributes(ego_graph, betweenness_centrality, 'betweenness_centrality')

    sorted_betweenness_centrality = [node for node, _ in sorted(betweenness_centrality.items(), key=lambda x: x[1], reverse=True)]
    
    print(f"Betweenness Centrality of EgoNode {ego_graph.name}: {ego_graph.nodes[ego_graph.name]['betweenness_centrality']}")
    graphStatistics('Betweenness Centrality', list(betweenness_centrality.values()))
    graphHistogram('Betweenness Centrality', list(betweenness_centrality.values()), ego_graph.name)
    return sorted_betweenness_centrality
    
sortedBetweennessCentralities = []
for i in range(len(egoGraphs)):
    sortedBetweennessCentralities.append(graphBetweennessCentrality(egoGraphs[i][0]))
    print(f" EgoNet {egoGraphs[i][1]} Max Betweenness Centrality: {egoGraphs[i][0].nodes[sortedBetweennessCentralities[i][0]]['betweenness_centrality']}\n")
Betweenness Centrality of EgoNode 104987932455782713675: 0.15982784615747542
Mean of Betweenness Centrality: 0.0003769827367881463
Median of Betweenness Centrality: 7.962691295135382e-06

 EgoNet 104987932455782713675 Max Betweenness Centrality: 0.15982784615747542

Betweenness Centrality of EgoNode 106724181552911298818: 0.07483109052047399
Mean of Betweenness Centrality: 0.00022832937763831953
Median of Betweenness Centrality: 9.51131007849301e-06

 EgoNet 106724181552911298818 Max Betweenness Centrality: 0.07483109052047399

Betweenness Centrality of EgoNode 108541235642523883716: 0.17777252224201545
Mean of Betweenness Centrality: 0.0008151070697694771
Median of Betweenness Centrality: 1.3564735531094586e-05

 EgoNet 108541235642523883716 Max Betweenness Centrality: 0.17777252224201545

Betweenness Centrality of EgoNode 118107045405823607895: 0.10739494915655977
Mean of Betweenness Centrality: 0.0003309546943764746
Median of Betweenness Centrality: 8.627406264336287e-06

 EgoNet 118107045405823607895 Max Betweenness Centrality: 0.10739494915655977

Betweenness Centrality of EgoNode 116825083494890429556: 0.13949766588777718
Mean of Betweenness Centrality: 0.00020858195540199152
Median of Betweenness Centrality: 2.4042740445663104e-06

 EgoNet 116825083494890429556 Max Betweenness Centrality: 0.13949766588777718

Betweenness Centrality of EgoNode 110809308822849680310: 0.3378139885654403
Mean of Betweenness Centrality: 0.00531541796970302
Median of Betweenness Centrality: 0.0

 EgoNet 110809308822849680310 Max Betweenness Centrality: 0.3378139885654403

Betweenness Centrality of EgoNode 107489144252174167638: 0.053626597311770975
Mean of Betweenness Centrality: 0.0001548786401780912
Median of Betweenness Centrality: 5.258276216227555e-06

 EgoNet 107489144252174167638 Max Betweenness Centrality: 0.053626597311770975

Betweenness Centrality of EgoNode 101626577406833098387: 0.08754097123874181
Mean of Betweenness Centrality: 0.0002325015743788686
Median of Betweenness Centrality: 7.4753981496628215e-06

 EgoNet 101626577406833098387 Max Betweenness Centrality: 0.08754097123874181

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Edge Betweenness Centrality¶
In [30]:
def edgeBetweennessCentrality(ego_graph):
    edge_betweenness_centrality = nx.edge_betweenness_centrality(ego_graph)
    sorted_edge_betweenness_centrality = [edge for edge, _ in sorted(edge_betweenness_centrality.items(), key=lambda x: x[1], reverse=True)]
    #print(f"Edge Betweenness Centrality: {edge_betweenness_centrality}")
    graphStatistics('Edge Betweenness Centrality',list(edge_betweenness_centrality.values()))
    graphHistogram('Edge Betweenness Centrality',list(edge_betweenness_centrality.values()),ego_graph.name)
    return sorted_edge_betweenness_centrality

sortedEdgeBetweennessCentralities = []
for i in range(len(egoGraphs)):
    sortedEdgeBetweennessCentralities.append(edgeBetweennessCentrality(egoGraphs[i][0]))
    print(f" EgoNet {egoGraphs[i][1]} Max Edge Betweenness Centrality: {sortedEdgeBetweennessCentralities[i][0]}\n")
Mean of Edge Betweenness Centrality: 5.621222751615037e-06
Median of Edge Betweenness Centrality: 1.853899311650096e-06

 EgoNet 104987932455782713675 Max Edge Betweenness Centrality: ('104364058018116761460', '104987932455782713675')

Mean of Edge Betweenness Centrality: 2.946021241062573e-06
Median of Edge Betweenness Centrality: 8.057602867033817e-07

 EgoNet 106724181552911298818 Max Edge Betweenness Centrality: ('111091089527727420853', '106724181552911298818')

Mean of Edge Betweenness Centrality: 2.66218817510423e-05
Median of Edge Betweenness Centrality: 6.045020878576499e-06

 EgoNet 108541235642523883716 Max Edge Betweenness Centrality: ('111091089527727420853', '108541235642523883716')

Mean of Edge Betweenness Centrality: 5.418993425743088e-06
Median of Edge Betweenness Centrality: 1.953548453790061e-06

 EgoNet 118107045405823607895 Max Edge Betweenness Centrality: ('111091089527727420853', '118107045405823607895')

Mean of Edge Betweenness Centrality: 3.3039084266522934e-06
Median of Edge Betweenness Centrality: 7.854625807654531e-07

 EgoNet 116825083494890429556 Max Edge Betweenness Centrality: ('111091089527727420853', '116825083494890429556')

Mean of Edge Betweenness Centrality: 0.0015311613251821074
Median of Edge Betweenness Centrality: 0.000620523967054009

 EgoNet 110809308822849680310 Max Edge Betweenness Centrality: ('116588163905721394130', '110809308822849680310')

Mean of Edge Betweenness Centrality: 9.076941401801728e-07
Median of Edge Betweenness Centrality: 3.5299490761905466e-07

 EgoNet 107489144252174167638 Max Edge Betweenness Centrality: ('111091089527727420853', '107489144252174167638')

Mean of Edge Betweenness Centrality: 4.0118474037997376e-06
Median of Edge Betweenness Centrality: 1.1500172217326919e-06

 EgoNet 101626577406833098387 Max Edge Betweenness Centrality: ('111367628080250080638', '101626577406833098387')

No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
Saving Centralities in CSV¶
In [31]:
def saveCentralities(ego_graph, egoNet):
    folder_path = f'./output/{egoNet}'
    os.makedirs(folder_path, exist_ok=True)
    
    # Save centralities information
    with open(f'{folder_path}/centralities.csv', mode='w', newline='') as file:
        writer = csv.writer(file)
        writer.writerow(['Node ID', 'Degree Centrality', 'Eigenvector Centrality', 'Closeness Centrality', 'Betweenness Centrality'])
        for node in ego_graph.nodes:
            writer.writerow([
                node, 
                ego_graph.nodes[node].get('degree_centrality', 'N/A'),
                ego_graph.nodes[node].get('eigenvector_centrality', 'N/A'),
                ego_graph.nodes[node].get('closeness_centrality', 'N/A'),
                ego_graph.nodes[node].get('betweenness_centrality', 'N/A')
            ])

for i in range(len(egoGraphs)):
    saveCentralities(egoGraphs[i][0], egoGraphs[i][1])

Popularity of Alters¶

In [32]:
def top5Nodes(ego_graph, egoNet, sortedCentrality, centrality_name):
    print(f"Top 5 Nodes with Highest {centrality_name} in EgoNet {egoNet}")
    top5 = sortedCentrality[:5]
    df = pd.DataFrame({
        'Node': [node for node in top5],
        centrality_name: [ego_graph.nodes[node].get(centrality_name, 'N/A') for node in top5],
        'Number of Degrees': [ego_graph.degree[node] for node in top5],
        'Feature': [ego_graph.nodes[node].get('features', 'N/A') for node in top5]
    })
    
    print(df)
    
    folder_path = f'./output/{egoNet}'
    os.makedirs(folder_path, exist_ok=True)
    df.to_csv(f'{folder_path}/top5_{centrality_name}.csv', index=False)

for i in range(len(egoGraphs)):
    top5Nodes(egoGraphs[i][0], egoGraphs[i][1], sortedDegreeCentralities[i], 'degree_centrality')
    top5Nodes(egoGraphs[i][0], egoGraphs[i][1], sortedEigenvectorCentralities[i], 'eigenvector_centrality')
    top5Nodes(egoGraphs[i][0], egoGraphs[i][1], sortedClosenessCentralities[i], 'closeness_centrality')
    top5Nodes(egoGraphs[i][0], egoGraphs[i][1], sortedBetweennessCentralities[i], 'betweenness_centrality')
Top 5 Nodes with Highest degree_centrality in EgoNet 104987932455782713675
                    Node  degree_centrality  Number of Degrees  \
0  104987932455782713675           1.467503               2574   
1  109330684746468207713           0.906499               1590   
2  108470782772821648496           0.850057               1491   
3  113184091727451211493           0.823261               1444   
4  102476152658204495450           0.819840               1438   

                                             Feature  
0  [gender:1, institution:, job_title:at, job_tit...  
1  [gender:1, job_title:&, job_title:art, job_tit...  
2  [gender:2, job_title:architect,, job_title:aut...  
3  [gender:1, job_title:documentary, job_title:ph...  
4  [gender:2, job_title:blogger, job_title:photog...  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 104987932455782713675
                    Node  eigenvector_centrality  Number of Degrees  \
0  104987932455782713675                0.093218               2574   
1  105237212888595777019                0.084200               1040   
2  118418436905562612953                0.078975                853   
3  102476152658204495450                0.077927               1438   
4  111091089527727420853                0.076054               1248   

                                             Feature  
0  [gender:1, institution:, job_title:at, job_tit...  
1  [gender:1, job_title:a, job_title:at, job_titl...  
2  [gender:2, institution:, job_title:app, job_ti...  
3  [gender:2, job_title:blogger, job_title:photog...  
4  [gender:1, institution:Microsoft, institution:...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 104987932455782713675
                    Node  closeness_centrality  Number of Degrees  \
0  104987932455782713675              0.497830               2574   
1  105237212888595777019              0.455868               1040   
2  111091089527727420853              0.439046               1248   
3  118418436905562612953              0.430054                853   
4  102476152658204495450              0.428248               1438   

                                             Feature  
0  [gender:1, institution:, job_title:at, job_tit...  
1  [gender:1, job_title:a, job_title:at, job_titl...  
2  [gender:1, institution:Microsoft, institution:...  
3  [gender:2, institution:, job_title:app, job_ti...  
4  [gender:2, job_title:blogger, job_title:photog...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 104987932455782713675
                    Node  betweenness_centrality  Number of Degrees  \
0  104987932455782713675                0.159828               2574   
1  111091089527727420853                0.021135               1248   
2  102476152658204495450                0.013829               1438   
3  109330684746468207713                0.010287               1590   
4  101261243957067319422                0.008895                960   

                                             Feature  
0  [gender:1, institution:, job_title:at, job_tit...  
1  [gender:1, institution:Microsoft, institution:...  
2  [gender:2, job_title:blogger, job_title:photog...  
3  [gender:1, job_title:&, job_title:art, job_tit...  
4  [gender:1, institution:TechTV, job_title:journ...  
Top 5 Nodes with Highest degree_centrality in EgoNet 106724181552911298818
                    Node  degree_centrality  Number of Degrees  \
0  106724181552911298818           1.101135               4268   
1  111091089527727420853           0.836945               3244   
2  101261243957067319422           0.541022               2097   
3  107590093667978669374           0.488906               1895   
4  110258899475477198037           0.457430               1773   

                                             Feature  
0  [gender:1, job_title:american, job_title:at, j...  
1  [gender:1, institution:Fawcette, institution:M...  
2  [gender:1, institution:Premiere, institution:T...  
3  [gender:1, job_title:at, job_title:librarian, ...  
4                                         [gender:1]  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 106724181552911298818
                    Node  eigenvector_centrality  Number of Degrees  \
0  111091089527727420853                0.102622               3244   
1  105237212888595777019                0.085362               1532   
2  104987932455782713675                0.084646               1575   
3  109813896768294978296                0.083792               1233   
4  106189723444098348646                0.081456               1329   

                                             Feature  
0  [gender:1, institution:Fawcette, institution:M...  
1  [gender:1, job_title:a, job_title:at, job_titl...  
2  [gender:1, institution:, job_title:at, job_tit...  
3  [gender:1, institution:Google, place:palo, uni...  
4    [gender:1, institution:Google, last_name:larry]  
Top 5 Nodes with Highest closeness_centrality in EgoNet 106724181552911298818
                    Node  closeness_centrality  Number of Degrees  \
0  111091089527727420853              0.468793               3244   
1  106189723444098348646              0.440467               1329   
2  109813896768294978296              0.429272               1233   
3  107117483540235115863              0.424601               1191   
4  101261243957067319422              0.418899               2097   

                                             Feature  
0  [gender:1, institution:Fawcette, institution:M...  
1    [gender:1, institution:Google, last_name:larry]  
2  [gender:1, institution:Google, place:palo, uni...  
3  [gender:1, institution:Google, institution:Mic...  
4  [gender:1, institution:Premiere, institution:T...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 106724181552911298818
                    Node  betweenness_centrality  Number of Degrees  \
0  106724181552911298818                0.074831               4268   
1  111091089527727420853                0.074272               3244   
2  101261243957067319422                0.019343               2097   
3  103511435932730435338                0.011040               1356   
4  105963804556453504833                0.009827                945   

                                             Feature  
0  [gender:1, job_title:american, job_title:at, j...  
1  [gender:1, institution:Fawcette, institution:M...  
2  [gender:1, institution:Premiere, institution:T...  
3  [gender:1, job_title:manager, job_title:online...  
4  [gender:1, institution:Google, job_title:@, jo...  
Top 5 Nodes with Highest degree_centrality in EgoNet 108541235642523883716
                    Node  degree_centrality  Number of Degrees  \
0  108541235642523883716           1.206470               1268   
1  111091089527727420853           0.749762                788   
2  101261243957067319422           0.563273                592   
3  106382433884876652170           0.551855                580   
4  109876467727174291780           0.511893                538   

                                             Feature  
0  [gender:1, job_title:&, job_title:blogger,, jo...  
1  [gender:1, institution:Microsoft, job_title:fo...  
2  [gender:1, institution:TWiT, institution:TechT...  
3                          [gender:1, last_name:joe]  
4  [gender:1, job_title:-, job_title:at, job_titl...  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 108541235642523883716
                    Node  eigenvector_centrality  Number of Degrees  \
0  111091089527727420853                0.149857                788   
1  107117483540235115863                0.149043                354   
2  106189723444098348646                0.147441                353   
3  113116318008017777871                0.145741                480   
4  109813896768294978296                0.140749                333   

                                             Feature  
0  [gender:1, institution:Microsoft, job_title:fo...  
1  [gender:1, institution:Google, institution:Mic...  
2    [gender:1, institution:Google, last_name:larry]  
3  [gender:1, institution:Google+, institution:Vi...  
4  [gender:1, institution:Google, university:Stan...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 108541235642523883716
                    Node  closeness_centrality  Number of Degrees  \
0  111091089527727420853              0.428500                788   
1  106189723444098348646              0.414957                353   
2  107117483540235115863              0.413326                354   
3  113116318008017777871              0.406494                480   
4  109813896768294978296              0.406145                333   

                                             Feature  
0  [gender:1, institution:Microsoft, job_title:fo...  
1    [gender:1, institution:Google, last_name:larry]  
2  [gender:1, institution:Google, institution:Mic...  
3  [gender:1, institution:Google+, institution:Vi...  
4  [gender:1, institution:Google, university:Stan...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 108541235642523883716
                    Node  betweenness_centrality  Number of Degrees  \
0  108541235642523883716                0.177773               1268   
1  111091089527727420853                0.069067                788   
2  101261243957067319422                0.021036                592   
3  100974258168375166691                0.014563                524   
4  113607618886547846656                0.012363                308   

                                             Feature  
0  [gender:1, job_title:&, job_title:blogger,, jo...  
1  [gender:1, institution:Microsoft, job_title:fo...  
2  [gender:1, institution:TWiT, institution:TechT...  
3  [gender:2, job_title:artist, job_title:recording]  
4  [gender:1, institution:YouTube, job_title:i, j...  
Top 5 Nodes with Highest degree_centrality in EgoNet 118107045405823607895
                    Node  degree_centrality  Number of Degrees  \
0  118107045405823607895           1.236767               3014   
1  113920526057233976680           0.533853               1301   
2  106674561143088442070           0.503078               1226   
3  106048773058055537048           0.494460               1205   
4  114427619140485635394           0.494050               1204   

                                             Feature  
0  [gender:1, job_title:&, job_title:art, job_tit...  
1  [gender:2, job_title:;), job_title:a, job_titl...  
2  [gender:1, job_title:-, job_title:art, job_tit...  
3                             [gender:1, place:Palo]  
4  [gender:2, job_title:/, job_title:art, job_tit...  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 118107045405823607895
                    Node  eigenvector_centrality  Number of Degrees  \
0  105237212888595777019                0.091172                915   
1  104987932455782713675                0.086449                943   
2  113455290791279442483                0.083997                681   
3  118418436905562612953                0.081455                763   
4  111091089527727420853                0.080882                908   

                                             Feature  
0  [gender:1, job_title:a, job_title:at, job_titl...  
1  [gender:1, institution:, job_title:at, job_tit...  
2  [gender:1, job_title:and, job_title:entreprene...  
3  [gender:2, institution:, job_title:app, job_ti...  
4  [gender:1, institution:Microsoft, job_title:fo...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 118107045405823607895
                    Node  closeness_centrality  Number of Degrees  \
0  105237212888595777019              0.414573                915   
1  104987932455782713675              0.402636                943   
2  111091089527727420853              0.392853                908   
3  118418436905562612953              0.391960                763   
4  113455290791279442483              0.390776                681   

                                             Feature  
0  [gender:1, job_title:a, job_title:at, job_titl...  
1  [gender:1, institution:, job_title:at, job_tit...  
2  [gender:1, institution:Microsoft, job_title:fo...  
3  [gender:2, institution:, job_title:app, job_ti...  
4  [gender:1, job_title:and, job_title:entreprene...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 118107045405823607895
                    Node  betweenness_centrality  Number of Degrees  \
0  118107045405823607895                0.107395               3014   
1  111091089527727420853                0.017825                908   
2  106674561143088442070                0.010934               1226   
3  114399570243387179751                0.010655               1110   
4  113920526057233976680                0.010607               1301   

                                             Feature  
0  [gender:1, job_title:&, job_title:art, job_tit...  
1  [gender:1, institution:Microsoft, job_title:fo...  
2  [gender:1, job_title:-, job_title:art, job_tit...  
3  [gender:1, job_title:art, job_title:artist, jo...  
4  [gender:2, job_title:;), job_title:a, job_titl...  
Top 5 Nodes with Highest degree_centrality in EgoNet 116825083494890429556
                    Node  degree_centrality  Number of Degrees  \
0  116825083494890429556           1.114910               5152   
1  111091089527727420853           0.485393               2243   
2  106667729510464379826           0.383034               1770   
3  109596373340495798827           0.354685               1639   
4  116601386475273901307           0.347544               1606   

                                             Feature  
0  [gender:1, job_title:all, job_title:amateur, j...  
1  [gender:1, institution:Fawcette, institution:M...  
2  [gender:1, job_title:all, job_title:and, job_t...  
3  [gender:1, job_title:for, job_title:looking, j...  
4  [gender:2, job_title:analyst, job_title:and, j...  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 116825083494890429556
                    Node  eigenvector_centrality  Number of Degrees  \
0  111091089527727420853                0.091994               2243   
1  105237212888595777019                0.090806               1502   
2  104987932455782713675                0.087827               1498   
3  118418436905562612953                0.083209               1092   
4  113686253941057080055                0.077202               1162   

                                             Feature  
0  [gender:1, institution:Fawcette, institution:M...  
1  [gender:1, job_title:a, job_title:at, job_titl...  
2  [gender:1, institution:, job_title:at, job_tit...  
3  [gender:2, institution:, job_title:app, job_ti...  
4  [gender:1, job_title:community, job_title:goog...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 116825083494890429556
                    Node  closeness_centrality  Number of Degrees  \
0  111091089527727420853              0.385596               2243   
1  112063946124358686266              0.370405               1029   
2  106189723444098348646              0.369109               1025   
3  105237212888595777019              0.368182               1502   
4  101849747879612982297              0.365396                995   

                                             Feature  
0  [gender:1, institution:Fawcette, institution:M...  
1  [gender:1, job_title::), job_title:being, job_...  
2    [gender:1, institution:Google, last_name:larry]  
3  [gender:1, job_title:a, job_title:at, job_titl...  
4  [gender:3, job_title:&, job_title:ceo, job_tit...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 116825083494890429556
                    Node  betweenness_centrality  Number of Degrees  \
0  116825083494890429556                0.139498               5152   
1  111091089527727420853                0.036508               2243   
2  106667729510464379826                0.009677               1770   
3  101261243957067319422                0.008636               1397   
4  108901599657368504920                0.007675               1354   

                                             Feature  
0  [gender:1, job_title:all, job_title:amateur, j...  
1  [gender:1, institution:Fawcette, institution:M...  
2  [gender:1, job_title:all, job_title:and, job_t...  
3  [gender:1, institution:McDonald's, institution...  
4  [job_title:and, job_title:author, job_title:bo...  
Top 5 Nodes with Highest degree_centrality in EgoNet 110809308822849680310
                    Node  degree_centrality  Number of Degrees  \
0  110809308822849680310           1.353982                153   
1  113962023658534166448           0.513274                 58   
2  114707910756425953932           0.460177                 52   
3  111048918866742956374           0.451327                 51   
4  112931539494181042672           0.380531                 43   

                                             Feature  
0  [gender:2, job_title:activist,, job_title:blog...  
1                      [gender:1, job_title:blogger]  
2                      [gender:1, last_name:richard]  
3  [gender:1, job_title:&, job_title:actor,, job_...  
4                      [gender:2, job_title:nothing]  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 110809308822849680310
                    Node  eigenvector_centrality  Number of Degrees  \
0  110809308822849680310                0.300851                153   
1  109213355974494564760                0.223985                 19   
2  108176814619778619437                0.212540                 28   
3  111048918866742956374                0.202277                 51   
4  101236358663985370139                0.193380                 41   

                                             Feature  
0  [gender:2, job_title:activist,, job_title:blog...  
1      [gender:1, job_title:writer,, last_name:ryan]  
2        [gender:1, job_title:and, job_title:writer]  
3  [gender:1, job_title:&, job_title:actor,, job_...  
4                 [gender:1, job_title:professional]  
Top 5 Nodes with Highest closeness_centrality in EgoNet 110809308822849680310
                    Node  closeness_centrality  Number of Degrees  \
0  110809308822849680310              0.385066                153   
1  108176814619778619437              0.351239                 28   
2  111048918866742956374              0.305003                 51   
3  109213355974494564760              0.303413                 19   
4  103399926392582289066              0.302013                 27   

                                             Feature  
0  [gender:2, job_title:activist,, job_title:blog...  
1        [gender:1, job_title:and, job_title:writer]  
2  [gender:1, job_title:&, job_title:actor,, job_...  
3      [gender:1, job_title:writer,, last_name:ryan]  
4    [gender:1, job_title:online, university:DePaul]  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 110809308822849680310
                    Node  betweenness_centrality  Number of Degrees  \
0  110809308822849680310                0.337814                153   
1  113962023658534166448                0.033493                 58   
2  116588163905721394130                0.032267                 37   
3  111048918866742956374                0.027144                 51   
4  114707910756425953932                0.026224                 52   

                                             Feature  
0  [gender:2, job_title:activist,, job_title:blog...  
1                      [gender:1, job_title:blogger]  
2  [gender:2, job_title:blogger, job_title:consul...  
3  [gender:1, job_title:&, job_title:actor,, job_...  
4                      [gender:1, last_name:richard]  
Top 5 Nodes with Highest degree_centrality in EgoNet 107489144252174167638
                    Node  degree_centrality  Number of Degrees  \
0  107489144252174167638           1.330066               5835   
1  110656253137238747090           0.826077               3624   
2  103145406846784293020           0.789150               3462   
3  110945896776944314708           0.771826               3386   
4  102742333797709782764           0.764987               3356   

                                             Feature  
0  [gender:1, institution:, job_title:blogger, jo...  
1  [gender:2, job_title:pet, job_title:photograph...  
2  [gender:2, job_title:engineer, job_title:it, j...  
3  [gender:1, job_title:biologist, job_title:phot...  
4  [gender:1, job_title:it, job_title:software, j...  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 107489144252174167638
                    Node  eigenvector_centrality  Number of Degrees  \
0  113455290791279442483                0.054287               1960   
1  105237212888595777019                0.051525               2276   
2  104987932455782713675                0.048386               2562   
3  101035196437264488455                0.048013               2484   
4  100962871525684315897                0.047615               1846   

                                             Feature  
0  [gender:1, job_title:and, job_title:entreprene...  
1  [gender:1, job_title:a, job_title:at, job_titl...  
2  [gender:1, institution:, job_title:at, job_tit...  
3  [gender:1, institution:, job_title:analog, job...  
4  [gender:1, job_title:full-time, job_title:phot...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 107489144252174167638
                    Node  closeness_centrality  Number of Degrees  \
0  105237212888595777019              0.486343               2276   
1  113455290791279442483              0.476725               1960   
2  104987932455782713675              0.471329               2562   
3  118418436905562612953              0.456303               1998   
4  101035196437264488455              0.454604               2484   

                                             Feature  
0  [gender:1, job_title:a, job_title:at, job_titl...  
1  [gender:1, job_title:and, job_title:entreprene...  
2  [gender:1, institution:, job_title:at, job_tit...  
3  [gender:2, institution:, job_title:app, job_ti...  
4  [gender:1, institution:, job_title:analog, job...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 107489144252174167638
                    Node  betweenness_centrality  Number of Degrees  \
0  107489144252174167638                0.053627               5835   
1  111091089527727420853                0.012563               2130   
2  104987932455782713675                0.006496               2562   
3  101373961279443806744                0.005110               2953   
4  106831762557971378854                0.004494               3031   

                                             Feature  
0  [gender:1, institution:, job_title:blogger, jo...  
1  [gender:1, institution:Microsoft, institution:...  
2  [gender:1, institution:, job_title:at, job_tit...  
3  [gender:1, job_title:&, job_title:landscape, j...  
4  [gender:1, institution:NBC, job_title:executiv...  
Top 5 Nodes with Highest degree_centrality in EgoNet 101626577406833098387
                    Node  degree_centrality  Number of Degrees  \
0  101626577406833098387           1.026816               4863   
1  103816454263149317813           0.329392               1560   
2  113989952886968273012           0.293919               1392   
3  114658682617855410839           0.288640               1367   
4  106542106648136996331           0.281883               1335   

                                             Feature  
0  [gender:1, job_title:..., job_title:blogger,, ...  
1                        [gender:1, last_name:bobby]  
2                      [gender:1, last_name:karsten]  
3                          [gender:1, place:Romania]  
4                                         [gender:3]  
Top 5 Nodes with Highest eigenvector_centrality in EgoNet 101626577406833098387
                    Node  eigenvector_centrality  Number of Degrees  \
0  105237212888595777019                0.096662               1159   
1  104987932455782713675                0.096240               1204   
2  118418436905562612953                0.093369                989   
3  113455290791279442483                0.090797                724   
4  111091089527727420853                0.088971               1259   

                                             Feature  
0  [gender:1, job_title:a, job_title:at, job_titl...  
1  [gender:1, institution:, job_title:at, job_tit...  
2  [gender:2, institution:, job_title:app, job_ti...  
3  [gender:1, job_title:and, job_title:entreprene...  
4  [gender:1, institution:Microsoft, job_title:fo...  
Top 5 Nodes with Highest closeness_centrality in EgoNet 101626577406833098387
                    Node  closeness_centrality  Number of Degrees  \
0  106189723444098348646              0.377210                983   
1  109813896768294978296              0.370031                893   
2  105237212888595777019              0.364844               1159   
3  107117483540235115863              0.364727                821   
4  112063946124358686266              0.364610                849   

                                             Feature  
0    [gender:1, institution:Google, last_name:larry]  
1  [gender:1, institution:Google, last_name:serge...  
2  [gender:1, job_title:a, job_title:at, job_titl...  
3  [gender:1, institution:Google, institution:Mic...  
4  [gender:1, job_title::), job_title:being, job_...  
Top 5 Nodes with Highest betweenness_centrality in EgoNet 101626577406833098387
                    Node  betweenness_centrality  Number of Degrees  \
0  101626577406833098387                0.087541               4863   
1  111367628080250080638                0.016409                496   
2  105065317973590246539                0.010028                811   
3  111091089527727420853                0.009636               1259   
4  113989952886968273012                0.008938               1392   

                                             Feature  
0  [gender:1, job_title:..., job_title:blogger,, ...  
1  [institution:Google, job_title:and, job_title:...  
2                                         [gender:2]  
3  [gender:1, institution:Microsoft, job_title:fo...  
4                      [gender:1, last_name:karsten]  
In [33]:
def getClosestNodes(ego_graph, egoNet):

    # Calculate shortest path lengths from the ego node to all other nodes
    path_lengths = nx.shortest_path_length(ego_graph, egoNet)
    
    # Sort nodes by path length and get the closest ones
    closest_nodes = sorted(path_lengths, key=path_lengths.get)

    top5 = closest_nodes[:5]
    last5 = closest_nodes[-5:]
    print(f"Closest Nodes:")
    for node in top5:   
        print(f"Node {node}: {ego_graph.nodes[node]['features']}")
    print(f"Farthest Nodes:")
    for node in last5:
        print(f"Node {node}: {ego_graph.nodes[node]['features']}")

    dft = pd.DataFrame({
        'Node': [node for node in top5],
        'Feature': [ego_graph.nodes[node].get('features', 'N/A') for node in top5]
    })

    dfl = pd.DataFrame({
        'Node': [node for node in last5],
        'Feature': [ego_graph.nodes[node].get('features', 'N/A') for node in last5]
    })
    
    folder_path = f'./output/{egoNet}'
    os.makedirs(folder_path, exist_ok=True)
    dft.to_csv(f'{folder_path}/closerNodes.csv', index=False)
    dfl.to_csv(f'{folder_path}/farthestNodes.csv', index=False)

# Example usage
for ego_graph, egoNet in egoGraphs:
    getClosestNodes(ego_graph, egoNet)
    
Closest Nodes:
Node 104987932455782713675: ['gender:1', 'institution:', 'job_title:at', 'job_title:blogger', 'job_title:photographer,', 'last_name:thomas', 'place:Los']
Node 112063946124358686266: ['gender:1', 'job_title::)', 'job_title:being', 'job_title:retired', 'last_name:tom', 'university:University']
Node 105706178492556563330: ['gender:1', 'job_title:photographer', 'last_name:billy']
Node 117378076401635777570: ['gender:1', "job_title:don't", 'job_title:i', 'job_title:know', 'job_title:senior', 'job_title:strategist', 'job_title:that', 'job_title:what', 'last_name:andy', 'university:Northwestern', 'university:University']
Node 104364058018116761460: ['gender:1', 'institution:Apple', 'job_title:and', 'job_title:at', 'job_title:cto', 'job_title:of', 'job_title:product', 'last_name:tom', 'place:Ann', 'place:Chicago,', 'place:San', 'university:University']
Farthest Nodes:
Node 102244999235542855716: []
Node 107877829722242329922: []
Node 102128561574743081027: []
Node 100784600530487201307: []
Node 113959825844609067249: []
Closest Nodes:
Node 106724181552911298818: ['gender:1', 'job_title:american', 'job_title:at', 'job_title:blogger', 'job_title:blogger,', 'job_title:blogs,', 'job_title:columnist,', 'job_title:conservative', 'job_title:editor', 'job_title:editor-in-chief', 'job_title:entrepreneur.', 'job_title:liberal', 'job_title:of', 'job_title:partner', 'job_title:several', 'last_name:michael', 'place:Izmir,']
Node 108082478497335384404: ['gender:1', 'institution:Seesmic', 'job_title:&', 'job_title:and', 'job_title:ceo,', 'job_title:founder']
Node 100834378485895409468: ['gender:2', 'institution:Mashable', 'institution:VentureBeat', 'job_title:reporter', 'last_name:jennifer', 'place:Los', 'place:San', 'university:UCLA']
Node 102648148748642147788: ['gender:1', 'institution:Google', 'job_title:google+', "job_title:i'm", 'job_title:of', 'job_title:part', 'job_title:team', 'job_title:the', 'last_name:dennis']
Node 108176814619778619437: ['gender:1', 'job_title:actor', 'job_title:and', 'job_title:writer', 'place:Los', 'place:Pasadena,', 'place:Vancouver,']
Farthest Nodes:
Node 111136091696107355219: ['gender:1', 'job_title:ict', 'job_title:projectleider', 'last_name:dirk']
Node 109375589312705190267: ['gender:2']
Node 108489782256316824947: ['gender:1', 'institution:Electronic', 'institution:Sony', 'job_title:creative', 'job_title:producer', 'last_name:martijn', 'place:Leiden', 'place:Madrid', 'university:Friesland']
Node 113740187751359218701: ['gender:1']
Node 112495985656081238946: ['gender:1', 'last_name:tom']
Closest Nodes:
Node 108541235642523883716: ['gender:1', 'job_title:&', 'job_title:blogger,', 'job_title:creator', 'job_title:event', 'job_title:for', 'job_title:host', 'job_title:live', 'job_title:of', 'job_title:podcaster', 'job_title:youtuber,', 'job_title:|', 'place:Atlanta,', 'place:Knoxville,', 'place:Memphis,', 'place:Pittsburgh,', 'place:Washington,', 'university:University']
Node 115516333681138986628: ['job_title:google+', 'job_title:the', 'job_title:to', 'job_title:user', 'last_name:ryan', 'place:Chicago,']
Node 103637153024917466425: ['gender:1', 'institution:San', 'institution:Self', 'institution:Warner/Chappell', 'job_title:and', 'job_title:creative', 'job_title:digital', 'job_title:event', 'job_title:management', 'job_title:marketing,', 'job_title:online', 'job_title:strategy', 'last_name:andy', 'place:Chicago,', 'place:Iowa', 'place:Washington,', 'university:University']
Node 101849747879612982297: ['gender:3', 'job_title:&', 'job_title:ceo', 'job_title:founder', 'job_title:mashable', 'job_title:of', 'last_name:pete', 'place:San', 'place:Scotland']
Node 116581478643467215892: ['gender:2', 'job_title:a', 'job_title:and', 'job_title:like', 'job_title:our', 'job_title:someone', 'job_title:to', 'job_title:when']
Farthest Nodes:
Node 111753692932315740237: []
Node 101165143416503473580: []
Node 109053233996223373700: []
Node 108943292771761383631: []
Node 106328387072777040158: []
Closest Nodes:
Node 118107045405823607895: ['gender:1', 'job_title:&', 'job_title:art', 'job_title:blogger,', 'job_title:business', 'job_title:consultant,', 'job_title:designer,', 'job_title:developer,', 'job_title:graphic', 'job_title:it', 'job_title:owner', 'job_title:painter,', 'job_title:sculptor,', 'job_title:small', 'job_title:toy', 'job_title:web', 'last_name:james']
Node 100605864222557374608: ['gender:1', 'job_title:ceo', 'last_name:marcelo']
Node 106419400577988151299: ['gender:1', 'institution:Imaginism']
Node 115505611402423023943: ['gender:1', 'job_title:design,', 'job_title:photography', 'job_title:writing,']
Node 115471815788264818704: ['gender:1', 'job_title:artist', 'job_title:zombie', 'last_name:byron']
Farthest Nodes:
Node 106671084931094301510: ['gender:1', 'job_title:/', 'job_title:auteur', 'job_title:bd', 'job_title:illustrateur']
Node 105565257978663183206: ['gender:2', 'job_title:designer', 'job_title:graphic', 'last_name:sharon', 'place:Amsterdam', 'place:London', 'place:Paris', 'place:Roma']
Node 114132462785297040196: ['gender:1', 'job_title:artist,', 'job_title:painter', 'place:Orlando,', 'place:Silver']
Node 109210556273985402669: ['gender:2', 'job_title:assistant', 'job_title:director,', 'job_title:instructor', 'job_title:the', 'job_title:to', 'last_name:kathy', 'place:Atlanta,', 'place:Cleveland,', 'place:New', 'university:Connecticut']
Node 111444111877686723741: ['gender:1', 'last_name:quentin']
Closest Nodes:
Node 116825083494890429556: ['gender:1', 'job_title:all', 'job_title:amateur', 'job_title:and', 'job_title:blogger,', 'job_title:chef,', 'job_title:drink', 'job_title:food', 'job_title:lover', 'job_title:of', 'job_title:photographer,', 'job_title:things', 'last_name:jake']
Node 104541959256591361052: ['gender:1', 'job_title:and', 'job_title:engineer', 'job_title:photographer', 'job_title:software', 'last_name:david', 'place:Brazil']
Node 107720718922832943625: []
Node 110385399973090519138: ['gender:1', 'job_title:interest', 'job_title:me', 'job_title:that', 'job_title:things', 'last_name:steve', 'place:Toronto', 'place:Vancouver', 'place:Wellington,']
Node 114989358912013434555: ['gender:1', 'job_title:artist,', 'job_title:multimedia', 'job_title:music', 'job_title:producer', 'place:Prague']
Farthest Nodes:
Node 108601427100401548787: ['gender:1', 'last_name:bruce']
Node 108761182084477892096: ['gender:2', 'last_name:anna', 'place:Brisbane']
Node 110219690264668910553: ['gender:1', 'job_title:and', 'job_title:chef', 'job_title:executive', 'job_title:food', 'job_title:medical', 'last_name:thom', 'place:miami,', 'university:Culinary']
Node 101709009597213137381: ['gender:2']
Node 101860381122467498202: ['gender:1', 'job_title:please', 'job_title:see', 'place:Austria', 'place:Czech', 'place:France', 'place:Germany', 'place:Netherlands', 'place:USA']
Closest Nodes:
Node 110809308822849680310: ['gender:2', 'job_title:activist,', 'job_title:blogger,', 'job_title:consultant,', 'job_title:online', 'job_title:poet,', 'job_title:political', 'job_title:writer,', 'place:Florence,']
Node 106176762220398854458: ['gender:1', 'place:New']
Node 118131417301350660933: ['gender:1', 'job_title:and', 'job_title:consultant', 'job_title:developer,', 'job_title:web']
Node 107682748671253717847: ['job_title:blogger,', 'job_title:g+']
Node 103399926392582289066: ['gender:1', 'job_title:online', 'university:DePaul']
Farthest Nodes:
Node 115421256232333720307: ['gender:1', 'last_name:ryan']
Node 106961732045330916384: ['gender:1', 'job_title:a', 'job_title:day', 'job_title:my', 'job_title:time', 'last_name:alan', 'place:Brooklyn,']
Node 106324060302594483828: ['gender:1', 'last_name:mike']
Node 103326131892225095567: ['gender:1', 'last_name:david']
Node 110569410802485729381: ['gender:1', 'job_title:marketing,', 'job_title:media,', 'job_title:social', 'last_name:william', 'place:Ohio']
Closest Nodes:
Node 107489144252174167638: ['gender:1', 'institution:', 'job_title:blogger', 'job_title:photographer', 'last_name:steve']
Node 107590607834908463472: ['gender:1', 'institution:Google', 'institution:Self-employed', 'job_title:google', 'job_title:maker', 'job_title:manager,', 'job_title:map', 'job_title:program', 'last_name:adam', 'place:Bloomington,', 'place:Boston,', 'place:Evanston,', 'place:Mannheim,', 'place:San', 'university:Indiana', 'university:Northwestern']
Node 110052889787728339761: ['gender:2', 'job_title:4', 'job_title:and', 'job_title:at', 'job_title:drop', 'job_title:lead', 'job_title:lighting', 'job_title:on', 'last_name:maggie']
Node 115851550445020159565: ['gender:1', 'last_name:josh', 'place:London']
Node 104334993139856754317: ['gender:2', 'job_title::)', 'place:Fort', 'place:Orlando,', 'place:Seattle,', 'place:Seoul,']
Farthest Nodes:
Node 112404099714545791798: ['last_name:alexander']
Node 116157414053356185540: []
Node 117729694813992697722: []
Node 103374497188264364599: []
Node 117894830662946357424: []
Closest Nodes:
Node 101626577406833098387: ['gender:1', 'job_title:...', 'job_title:blogger,', 'job_title:gallery', 'job_title:webdesign,', 'job_title:youtuber,']
Node 103667678270324179713: ['gender:1', 'job_title:.', 'job_title:instructor', 'job_title:musician', 'job_title:photographer', 'job_title:workshop', 'last_name:alexandre']
Node 101326473558851266458: ['gender:1', 'last_name:alex']
Node 100936611936552412031: ['gender:1', 'institution:Freelance', 'job_title:photographer', 'last_name:robert']
Node 102533732658641069172: ['gender:2', 'job_title:fix', 'job_title:i', 'job_title:people', 'job_title:things', 'last_name:linda']
Farthest Nodes:
Node 104935478024576728989: ['gender:1', 'job_title:-', 'job_title:full', 'job_title:photographer', 'job_title:pro', 'job_title:time', 'last_name:kevin']
Node 110811627232176206368: ['gender:2', 'institution:Self', 'job_title:model/actress']
Node 105142636641076847892: ['gender:1', 'last_name:andre']
Node 114581424069448327903: ['gender:1']
Node 116755139777604884366: ['gender:2', 'job_title:/', 'job_title:designer', 'job_title:graphic', 'job_title:model', 'job_title:nerd', 'place:San', 'place:Seattle,']

Louvain Algorithm¶

In [34]:
from networkx.algorithms.community import louvain_communities
def getLouvainCommunities(ego_graph, egoNet):
    communities = list(louvain_communities(ego_graph))
    best_community = max(communities, key=len)

    print(f"Louvain Communities of EgoNet {egoNet}")
    for i, community in enumerate(communities):
        print(f"Community {i+1}: {community}")
    print(f"Best Community: {best_community}\n")

    folder_path = f'./output/{egoNet}'
    os.makedirs(folder_path, exist_ok=True)

    # Save communities information
    with open(f'{folder_path}/communities.csv', mode='w', newline='') as file:
        writer = csv.writer(file)
        writer.writerow(['Community', 'Node ID', 'Features'])
        for i, community in enumerate(communities):
            for node in community:
                features = ego_graph.nodes[node]['features']
                writer.writerow([f'Community {i+1}', node, features])
    
    #Save best Community
    with open(f'{folder_path}/best_community.csv', mode='w', newline='') as file:
        writer = csv.writer(file)
        writer.writerow(['Node ID', 'Features'])
        for node in best_community:
            features = ego_graph.nodes[node]['features']
            writer.writerow([node, features])
    return communities, best_community

communities = []
for i in range(len(egoGraphs)):
    communities.append(getLouvainCommunities(egoGraphs[i][0], egoGraphs[i][1]))
Louvain Communities of EgoNet 104987932455782713675
Community 1: {'104678191247579814431', '110007205463584534134', '104215639329521542302', '108866766699357318662', '111294901335901191983', '103503116383846951534', '118208834515255752193', '109618601395391434564', '107650451991930674897', '100109420053181930599', '104770776614693816879', '106170102981460245504', '102920063140431683002', '103069435655954575455', '103806016066388243587', '106455052219635361001', '107929155517801383466', '107778499192458412127', '104893524557754738229', '103111819620088309060', '104486088524980775787', '103245041057625130355', '107927249541186073633', '116123554028678966465', '110896523722790469837', '115851550445020159565', '112759145058424854671', '105788536249289182288', '107877829722242329922', '104867148520425189911', '105964628633957244534', '116889127769965062962', '100190655365702878730', '110334143643816920823', '115512958737234042650', '115315381065204345007', '116616473522216111363', '117926180239215978640', '106804288949826635270', '107221142875015274837', '115120856388820348736', '101963597801596120711', '118391323892426354857', '115438915076156178487', '110727524106003793026', '105786329165387175660', '110511685769077130162', '111436932373374310744', '115497159464714580796', '104016588158459361282', '108470801637099721956', '101682363120803229099', '114127770085561510918', '109813962904244597868', '113859540036726448291', '112546953300159727405', '102128561574743081027', '107953073710704668222', '117728611187295597769', '118225658028481772649', '104744726224419902744', '108734381985540644987', '112237365171998001876', '104178723837900724588', '115642158535686170781', '110053263559112570543', '115554090246070526639', '114634469290344215480', '103561847705963058569', '109899289749426927448', '101155443773705571285', '112632260187323187916', '112311470127292513285', '116999207197353936677', '104527974589315823035', '113027837615023628132', '106711803105103787711', '113900138806012194956', '114969675270324680172', '111819236720804784066', '100830123352736594226', '101651096660571767183', '111292852688797062644', '111831478459732211063', '111583991024851468345', '108223631683007245807', '105406713523222664494', '104455362045911949140', '103657280492137983446', '107105348072959327741', '105267656376269695918', '101791177624236997185', '107784212140893392732', '115027064344359909639', '112384360849119488430', '108855274112594118541', '111557988109638065224', '115409439975765947523', '103855721758679327070', '106930820875100875937', '102220695034954692847', '100784600530487201307', '104555560442231092804', '114205894819109202624', '107107966604134599612', '113400351102255476238', '110677399908549124400', '106443907091700441804', '112466252788633155794', '113997304677714379414', '100550278452176305982', '114625400847885309794', '117500303164564972378', '110286141446904173472', '106894339003893064500', '111387258390890460828', '115595232870915667505', '104201507644960011701', '114153859732710523651', '109328612626879131592', '110054750107833929512', '103009917125562846870', '109357173702102949587', '106032143128915938009', '101869395366096983724', '112930364932290387951', '112999005004480372636', '107876615810858105870', '102130773034819867792', '108835030427235626956', '113790908786585486729', '105507095357499885933', '113366230704709217856', '116594199576805510790', '105404892786781748238', '117349457540132415662', '104755336394155711931', '100373161560332873786', '105820565463487627814', '112104018110702208083', '112492933628695918241', '105013324302057228724', '106206424594758074492', '100251437767843856091', '114600389570273106081', '106684105564729483790', '110228619695183640804', '108221835031756703002', '101012074427509537656', '107438998639340158528', '110041523199056192526', '103519655975029093996', '102881506547001047405', '105894760755439344491', '104505181812520851969', '103535806271845766896', '102384669117825357195', '112791456928724330032', '115490198572387699066', '117443217206442118345', '102947178331966873650', '102520007126942234329', '115505611402423023943', '101933670789857525884', '103079526275359000556', '101595233284055239142', '112837439401580368562', '109799158691725472251', '100419390705414227779', '109296361252372990987', '104359763476253962070', '103154767864398131776', '100928115753316027300', '102117093789730100872', '101098199090345210424', '116273289156569953717', '113939332173985992126', '108962312991619295310', '114349647829422661327', '104797702070835836289', '112236344213897425331', '115904636983755833973', '115655205216183932495', '109781522618867502975', '116944634206258122974', '109776541085987843977', '109892778117736265351', '114547779905550869913', '109660946159817383241', '113934645215952069062', '104291276465722490992', '117948836573151305503', '112960723772418803264', '109254108470736148714', '104618664838382110366', '118351515323229708433', '114972425671351992168', '104203344134379117895', '109959354295627734270', '107880974706815787171', '114683515979385250025', '100879115281181648565', '111097102522228662594', '100580057424662460288', '105092775072462301186', '105764514082673516728', '113029970966905465553', '115007546118056246237', '109592634059397506775', '116782192572708139607', '107414592731514189079', '115811608074199996286', '102819906512633210274', '103619689952955738772', '118309378242345000403', '108732177719750777585', '118298912952607658547', '107707702440069014506', '106312035620164033349', '115144932473162359650', '118029848541356213863', '116204437472476177397', '116166930518893390711', '118236147995429375090', '106455972126925163352', '109619063322910077914', '100996797089322104049', '115008911624864960721', '103913955033200227575', '103473863573453096651', '102837097678487480685', '102420807080086585113', '109130420645194541096', '106158770342296171431', '113751283404152316115', '107791908943649564876', '116217157972739054782', '113775216082198424237', '115546499363668589446'}
Community 2: {'109549749746353031555', '104294083885937159989', '114051322401103919567', '117574356623680867920', '105656942431287100226', '104112700502285331526', '103814318968872067095', '113158814439512755352', '105720374917117266351', '109903915442790058971', '109970338579215706051', '103650951579527262798', '113977984500465768287', '115038846156832248145', '102245160667846222465', '107958711860940415885', '107622876449600446989', '111124838372075709293', '104051069913864446196', '117440562136163282023', '104962347070667053810', '115961021629090154025', '101384112455887732241', '117826637077711958172', '114858496219143473247', '102518365620075109973', '107489144252174167638', '108189481625587435470', '100216099807028197176', '112369916221417513808', '105730165898914391474', '103200491340117663153', '113312804462990112705', '114124121045669648448', '105164621447300845967', '118357019708110162087', '108612610644565864416', '109128179703780508212', '108986482395975467331', '111464294370388556424', '118026639398463272784', '106073502505833617615', '107140384943910571494', '107028157462218372820', '107901181807999531493', '107408720924877751027', '108527329601014444443', '107591005438840138933', '108909492433674629621', '106658849511427440492', '112027450030109652155', '108805430409141907975', '113537711651274258466', '101763511463762540696', '102377882249382281108', '112143275229786859149', '112917540183250234327', '101140516949313637221', '116799045993451756042', '111433926516886244464', '102495734785874420854', '103973455051678273599', '111725564594659562248', '106115198697251921957', '107430862196617669986', '105072305864951447999', '107379680601055044776', '106747990444555145217', '112065005261622211649', '106075926887576280408', '100733334063966339322', '105409001356827017587', '115778688450213791339', '114894373995529057283', '107902791674095682080', '101565121108233400534', '113686253941057080055', '104384618198413714249', '114454401626173542028', '102476152658204495450', '108542426628002931624', '116558562366390541447', '116761784986758593534', '115105647022907007398', '100741797558437727880', '103568382669382600704', '106289562822644692555', '102409541521880756024', '108729164162563480433', '113367609333589754250', '110301391405974639830', '110414918019803275342', '104129842883884467271', '118036378782834084572', '113625462103500841369', '108359434857750473549', '116532796765106918781', '104306683219947597418', '106133480923323663427', '112423003619203285770', '111962077049890418486', '110217867677589593536', '107004843925454095805', '105502659434999281505', '110457476828368769831', '101403398734300997354', '113464569897311842405', '114058914080826728768', '101962829696981365403', '108439032486286528947', '113455290791279442483', '115230695084310626614', '110486517623939606418', '101437802758827481019', '110427026721802962737', '102715042925211875133', '109549484898750371360', '102528718122061029071', '102492263388954313581', '102383418437695456740', '115589104025084887009', '107625658878407076244', '117937415022745482256', '104975154049785009296', '110005870117760401605', '106369182367169177791', '115890818529847454494', '104380036950579300637', '106983800549406471589', '103911977826803756685', '107362628080904735459', '103009042022920905686', '111076127406109584342', '110081533733339647985', '117386232350873428301', '107262957695875184025', '115653522232867695783', '113849138262788701414', '111553887229728062170', '104081052260915687825', '116303122205999176427', '110749114535858679949', '114551199693334565912', '109556244641607065276', '103391112730568467076', '110570190335649752012', '102911609271399055065', '112471890387110967375', '115275485457246100819', '100081010984768669358', '103452223649907931922', '103147347309732225253', '114431900614226435491', '103992316443464780047', '111769581907361947424', '114823329938030546555', '101564834006346952568', '100114474888718501523', '106539835304510344813', '114547264440714100100', '103667678270324179713', '101435445820764233826', '101920446365251607478', '104129971305612636060', '113141491911286106535', '111683391686274840331', '102900716184466879402', '109711721158856077787', '104045511944341391917', '103497375962504727564', '100142397094908216555', '100646334382638139241', '104437636865235134368', '106909119051058200287', '116040565882702717981', '103306876714294066693', '117376164800382541126', '106499409180130178424', '110573952887886961621', '105459830584243636071', '111240230493422963077', '107701945493855915896', '108770653757133854006', '112447253390876285565', '114536133164105123829', '111718830236077991058', '115304232819929344853', '115059793966709655633', '105584766690422580666', '100936611936552412031', '113847951893881070422', '110924681541917174512', '102227359845636175866', '101793532287583914396', '107485702249108153532', '107742567767125793693', '103977761514480488970', '111346257562521323252', '111153455306955308157', '114489504825638353488', '109031486518632696635', '110258598415939907971', '108705174211639807508', '104072948945662204503', '101418715115916934669', '115774797671804302541', '105284909171916066479', '110492963926129353210', '106488284533523054088', '104602423740417750584', '106644585677637197494', '100996052305795888056', '113330053950020592701', '106123026171763346651', '116056645771775490363', '109782743775362085383', '101163289899816448462', '101114516910832196188', '101840590148844309820', '115837821650007187903', '100234834647440713663', '105785197801929483800', '102637183526072842850', '102373191596205712937', '115556579762244656440', '103761326311610249621', '106501988136092543170', '110036682383342142442', '115143234371607892983', '102865263115020893218', '116475141635496647275', '110874643485851794601', '115248125732252515176', '112708194574821912619', '118274547296450170219', '111028035383789880812', '115971103286397223281', '109447323719942836871', '107870240225843632731', '104792719356592263558', '110168117080267015976', '100095245926948995335', '101130571432010257170', '103929313090037971278', '100429564727464307274', '113356364521839061717', '102349305007676725479', '101035196437264488455', '117757565120070816446', '110548244043172681974', '114110327402201135668', '111856427400498745265', '113006600504104125846', '110482686815837630637', '117903799006890870191', '115518936622420587351', '115560798821543443948', '111907009595057957530', '103133377455628166981', '106567570642614609073', '116268124700162834377', '108972862430615180924', '101059049290567215584', '105396609818194584786', '107675155083026839050', '118106153060408840468', '117783113906561198831', '111437132356319061774', '116277430152888225999', '113209788861124695757', '117308228070864161588', '108348790329129161183', '111232346000552816062', '105734935003600818916', '100516849708142559734', '116701660840702373805', '104316443417435189825', '100377493270775536948', '106586390584377828999', '113490041785449486666', '114390577443742844389', '108629717769018996477', '105943946099362806788', '105336425684208963598', '114369704013100203178', '116369071500456395369', '107703405132139524311', '101992123652999935743', '100720381549183482357', '109964959136982994865', '112111076651793199305', '115571998474046088312', '118437039478327492127', '115582623750221438794', '111709710017308986916', '111720952354186227548', '118281061832654729973', '110466688127241330787', '105950725902891401635', '102127076088332626811', '102562092024109319987', '116197193480724162859', '114153794734652455699', '113890545538451545819', '100542372891417952741', '116247667398036716276', '116043947632177598920', '115977330688436384446', '101789011227801183737', '106243037947112322316', '112162067187975810298', '115220228182866909424', '100962871525684315897', '107826059696278341352', '106148235067079427902', '112957708071337353347', '113108445353518733177', '109795454744520479022', '101643794434997549451', '107877648970779188077', '117009886930068964404', '114765257755692312021', '103857876783441100226', '118376303525124349504', '111474280230597268474', '112661262066626464523', '105228323457033543279', '118390286079345532806', '103586615087663445665', '105256156026694816333', '113795961594472514455', '103520907987098229443', '107235139478887256327', '106831762557971378854', '112276313212733068188', '118088897327749634204', '103330025858600351508', '116995710336756123292', '110747746419769300628', '116703030433843502178', '102568229143155019755', '102864451869463538759', '118418436905562612953', '113609359086719569624', '103414388869473777990', '105706178492556563330', '115970197492058000536', '100724332764877363114', '117876399076277118155', '113097851206100618060', '102703372429818974972', '102244999235542855716', '100424993750772730018', '103650703836816496431', '101188200134011189910', '107948650868331033738', '105343512238569231143', '108584805279585306962', '115360471097759949621', '108177835910929170429', '105551989431666449555', '102390118349128083852', '111132283845303158546', '102616149286682191474', '107330218258870552495', '101409166686823420239', '106360687191375633839', '101248054507015265353', '106661386135469061222', '111931223719713971928', '104454175467350464887', '115080215652229659698', '115227158283991801388', '101925447418700964245', '118210774411660218412', '101240786246366714589', '109401201653736330160', '100968313568314999910', '113654461547690050667', '118288288231292086627', '103895402092394980881', '105888610649398488384', '108618489069378667186', '117059593834355077199', '116915389609964980297', '114951153220032017716', '107355938148825004416', '102511868205585278752', '113190229460560085138', '102871123574468799566', '116000809317294842395', '107432398539341365940', '116511752882326311047', '116183052555423440686', '104330156508504717257', '104920733213047887355', '109557335345467356244', '116047064092724050557', '107063521484195491203', '113832372441187524663', '103984263629438381785', '112617127041903537004', '102755548808767411605', '101691152556611912102', '117681034834791918293', '110806949181190360839', '105852782594022510198', '106131533046921693069', '102655243537270905389', '114602871833437671294', '105656572281780568085', '100773676343502297089', '114354878556558710088', '102143577107646910352', '104988917607101472506', '108306073756639379939', '117326953697823621359', '100813229168405788654', '116947923643606285942', '107773073025291449903', '103613260673488067634', '105213636585253009224', '107494834634231938072', '115978949584209885559', '102200175417231899136', '110833099456633722038', '109522193578764168033', '111396505044414091201', '113543880726286626830', '103275414019940070295', '101599646443148119399', '108510029349718795057', '110051675187410491718', '118369314436085435945', '105547060999578080024', '107894914670080014116', '107459220492917008623', '110909607055906584548', '110584481927562150689', '109718346641639271496', '102195144388135237932', '113278937129481000981', '112879207422835329028', '106020745084647886919', '110552992658041775740', '107420755679696384063', '109187026428012507334', '112775759305765347433', '118147897097670149361', '117039260735952140259', '114767803040499829479', '103886753187082859922', '109364225972033274255', '107119940474246316259', '117697399358826098478', '116219534929662479848', '100616009114067625121', '118058794383720702307', '111627219638715165418', '115304645050453722342', '114288572990229558524', '108924136210249299218', '106322266355568739242', '106677033160092990257', '106255898978966943774', '105433868410119060410', '108981679893410895534', '107347089538988597980', '106245708073909716431', '116098329946547517089', '111312577350562637368', '106758488395906535821', '111287774328521867169', '104014798881761369057', '107542632252660344559', '116696943168863559388', '102873175118305865375', '111243892781101553573', '117280301082168371727', '114789800183078016840', '103903543115451588953', '115773593461160257661', '107771181372242547518', '100185707560478368490', '114056084994793924628', '100892612779426154375', '117884476143887009277', '115516198122630950271', '105375708451104180822', '107244181382329628877', '100513454716900546707', '104414006889440330710', '104772213693268114793', '101265429413963140460', '115633632300685704236', '105262362497121611013', '105006839544396125723', '110837982014303057310', '109220060006128553211', '105873814765821560444', '103878892760050193072', '102233770004174020180', '116133765361046189827', '106753581955676569553', '105662441312581584585', '104531052356366757730', '109533441517984298838', '107543460658107759808', '102909547289727561969', '106363891658655148422', '103105624362798054387', '118048139271163842678', '116056482297838775754', '109213355974494564760', '108032623298499022371', '116396113048345875138', '113626341655414044020', '114154062944146796931', '114699780864258329431', '101006001190131292549', '115592917377507554334', '113290698547751890551', '115115161887111700191', '106813061125294796726', '112750091316252656625', '116682290311789132796', '111903892788414265541', '102257470372859959315', '106458554244835260890', '115011646412956679108', '110806755301520450833', '105146060706924233930', '109774951215877430341', '111112809838472063992', '110845149859025684138', '106719979779567208605', '105040001333571511595', '104296258582816548190', '103846208822256432743', '116008246625614132322', '114394128653474707020', '106679217619062767542', '117058794763073546749', '106453531239987697809', '112671613807103204042', '114764567692252908296', '114229157887417365950', '115209321914160323553', '115319136089718062451', '107808257391213832544', '115614791007645952267', '103698889037599783920', '110329781365538654444', '101016221218358645417', '111873853137122484021', '101586550030071389138', '109268388872941447574', '109294957777512802411', '112271931220583464729', '102370747100847006365', '107526321116822867905', '109002964461887714649', '110450138515744932294', '114045800510530461940', '100201191661425552413', '104548627795526843775', '117670223716788465006', '117173444820116260805', '108096298177137829845', '114052870720720466661', '114594095199361564465', '100994114474811451452', '101828183984777718546', '114812852992972288830', '111562638514922412630', '100774699436094132400', '111699855306814304937', '105362990780240393762', '105291328440562321682', '100519245975462538531', '102554407414282880001', '108621605232188649028', '112798516308771746920', '108215644829092784557', '116318044389289937577', '108803138068984169101', '103914809547503560483', '102762278318790381974', '111862324534985995584', '116169862173728406534', '107568623059464576350'}
Community 3: {'113985682035239336320', '113973725460789606387', '106147260548509334536', '107992936493665613654', '103171849011748425097', '102855346468155011104', '111164095920889813531', '106312895983244085949', '100610951871586794452', '104905891271818590977', '115990260207311840638', '105037104815911535953', '105248484118148978714', '107625733670511152905', '105642656248080978108', '103493459351957813291', '100258933461856349896', '117475115751695635499', '100849748974826402831', '112534444887280433722', '100438721742151441706', '114089069528015035598', '106792630639449031994', '105345184760149235821', '103325969492772452485', '118207880179234484610', '114903460102468194040', '100971870367870906394', '108561349569146460796', '100071403328735908465', '110318982509514011806', '115374511271823228898', '115517184921230763668', '102746638190399040597', '113570225939744343687', '103717997147657467502', '116289638943442505143', '104450760987525660219', '116131244044857846351', '114800310452543164210', '109706546325576702160', '111905809554306688150', '103522218014529209421', '112339769006469685593', '104973761519912571719', '117078683766767369032', '106473332550730818968', '111935860955005881764', '115608508963575029217', '113389205825239650337', '113747739680935437662', '117523780312701271966', '107101208158314368393', '103533326117556337218', '106445486315230745362', '117666625199895400127', '107839445301750519891', '113867186767961545250', '106086121009771648314', '105076678694475690385', '117127641446523771079', '113346667849081964949', '113751353481962008916', '109095289428532932206', '102864606114046363292', '106318111152683661692', '107328865934173779213', '108384201920217141722', '115478779964227301239', '107234826207633309420', '111767387314195016851', '107324231838996773622', '101485142151301995462', '111142884289817620371', '113593758802793133058', '115148483162925092470', '113214866933256773699', '113210431006401244170', '100852553003843098980', '104406474447003640834', '100860607625286470922', '106660499961741445550', '118022380936577102587', '114389815696944340948', '106497949182730964838', '100272572056305744950', '101915226295996051057', '112322792296174873610', '115470071077898720170', '117841284165024027243', '113544226688149802325', '105191728433526642396', '115530776534617554663', '117861338670157326726', '117378366412988915620', '111499016778755078481', '116334827514261561554', '111071659079284118401', '101261243957067319422', '116614816301680996701', '100689610725567995570', '104595698623653863070', '103765655241162838230', '112726038360301567381', '112761472166519422810', '104612091113514802664', '108597801513747143523', '109462153724122490319', '113651533166317708938', '103983412902071600906', '100664007027655584228', '114474252347218597235', '104629412415657030658', '115147851103905886830', '113186623583029971455', '110091950794232078809', '116780909123372203202', '115360979797396777969', '116936089053490488674', '114187414805582046708', '106808688302434879780', '105207689891479566260', '117997508248143467215', '115089171629143062167', '108921476049574227976', '117885386478729167113', '106657794796460623909', '116899029375914044550', '113169079069604287033', '115514397255079403751', '110828051037437082044', '105901259206530390933', '106434073353360803681', '114196831551075003950', '105106962406858998302', '111805096810507999673', '113036005791802906921', '118284288386771558227', '107148487955439180907', '100974258168375166691', '100446424597147316863', '105896517491618631584', '113866640210342162975', '114335536584569552074', '104405539079062799451', '117599103108596130864', '102395567804342742523', '115695134136726149281', '104390246098751387487', '114149296801704936672', '107148341976857735732', '101928220831375355212', '117378076401635777570', '106930353525178287382', '108282467430427973040', '114419062691890813341', '107420422968461975442', '103389452828130864950', '102248172550162272169', '111717275116289870961', '114790424055754975707', '103333429938529668020', '116448159124009692528', '113967406616028106904', '101203153764579219323', '117421021456205115327', '112589968131171571528', '104407355020484993533', '110369551942437806053', '113010729939949185045', '103510451695016002933', '111832530347449196055', '109986645939273919199', '116721310204582207099', '100070927167992422053', '105986763264590753118', '100397511207083609950', '100518419853963396365', '108316366145145424476', '109929597461084471287', '117597061540365781107', '113117251731252114390', '109869857730124231822', '117078929621673758896', '103488659073796680811', '114754745960372863865', '115017188374689068228', '108217840213826212063', '108189587050871927619', '115215962751742872940', '103541694080221120019', '101010880213993219787', '101336441946387245415', '107880430235672793681', '115404182941170857382', '111528361650742579912', '110272002170841143606', '105374700688270765519', '102755880045844773888', '116101130570927179121', '113267365185061078784', '107391346918211701146', '115989323496360706014', '114668932913459899449', '113116318008017777871', '106749254706410187997', '116381448202717889304', '103618543375127073102', '110106675738367466759', '104668334905772892105', '115739378269261680935', '104862274180494719802', '111048918866742956374', '114790574178411061829', '117516761105896097121', '106955057806718560042', '107379489464447013340', '105216491640488683417', '106189723444098348646', '116992221479414639679', '114963335823650717178', '106582975978839692558', '106012230304275517960', '103429767916333774260', '108494946397743992507', '114236886827225212279', '107066609145001672622', '112215258372617797481', '106876108861840284155', '108159551615224338529', '102425976203575211068', '108244336002148538964', '101560853443212199687', '111532818340136087829', '111538009015644508967', '116394575739281318169', '110209787594312878744', '104364058018116761460', '101349226599177874783', '116570889542655364711', '111780546059130798286', '107323726887023845557', '111937447827665620879', '103310002187772520535', '108151744331661850034', '101054357056409836365', '103609935634703980216', '117161668189080869053', '103679793185531964246', '106116111304373377701', '109351399938437494273', '103012564142649561853', '103364230630210894556', '115678469582493805997', '116214152295449083654', '113899511232506817885', '109201681846030076792', '112528443699803395789', '101975153326598871119', '110352049954858592591', '106525513293437191157', '116443652834120037299', '102697250952572084443', '107151878890162063543', '107739495159311749558', '106970146852198399846', '103400486089348346929', '111923555628646470907', '112364132652438722780', '111091089527727420853', '116119420122834839490', '103697821787469756035', '105226553876340461108', '117377434815709898403', '114685727151899977785', '104577357381178665210', '113171227622011939089', '108872243576352630928', '115132759088093329854', '109394349516935036489', '113175253983126961173', '112155943443252901644', '104791086126824629304', '114847043094933744792', '111838062802877407445', '109960739367065180670', '106711746868254805773', '103515423153727174981', '111679347391218296720', '110418988412344156570', '115863474911002159675', '113217924531763968801', '109139237014771009015', '113289704194188677269', '104304812570369572837', '113618186512902058035', '104343158662674164857', '107833107845497630206', '101667954274045755112', '114618043230336563405', '105424305916192632026', '112145086631075571971', '107982618909749811163', '107690887721700237205', '104233435224873922474', '107026299993226528916', '109677228345165381977', '103907806627406122152', '109477602961244144646', '100587561646339426146', '115634581146199879466', '114979733565079457374', '114969309232490288533', '105822688186016123722', '117104916619609296242', '113684935191966768721', '104681313125038107957', '109412257237874861202', '103861741370066605527', '109923941665874520762', '111115200870367736787', '105186786853692413159', '104047327515568274190', '110025177084709634671', '110816477701181524895', '102906377456782762333', '112395984886882740302', '103959261694002662508', '105993233487109742413', '115296766797649915594', '105502178297258827378', '110351155041587328439', '110646897367478657869', '110103641077948436261', '114860045023837730306', '100975323455529995259', '107709192676905581221', '116617183584681804725', '117388252776312694644', '113291236578795391211', '114092052797730247075', '104502152172934080159', '106920059607812615730', '118299777136505117634', '102034052532213921839', '117245298692605482770', '103481272940581823382', '107117483540235115863', '108240851375674070640', '113805478630918777008', '107676600017158214318', '111732375221065535359', '103295018204142119571', '103294418624820015984', '100458743091685862879', '105350495573144442379', '112063946124358686266', '117694109416186891571', '105800200737230522040', '103515259519634902605', '108383369630090511834', '104557885419342982371', '103024662999602309638', '105466684633490260901', '103100496883422151101', '109908096582524335367', '108284615416393551744', '113960539388009488951', '105237212888595777019', '113627804166769379647', '104912287640644359992', '104226321884965863264', '106825755284353302178', '110286587261352351537', '106896690615160948964', '110554344789668969711', '100612175927429294541', '107875584177081127211', '109895887909967698705', '109127696959701214173', '114699336529956127102', '100824715802751519764', '100023035624123127812', '116189326381960993775', '115655034901162574758', '117171737258103261935', '111736038656414351152', '114287391248383368206', '108621719653149463970', '106966599042760725595', '115106448444522478339', '115284179431042979728', '102533732658641069172', '111590351416571847176', '103028142993414638533', '101740637901749288288', '108652640482631482795', '112676929048719235214', '109233085728780194722', '111817088441696761347', '107460400955464713852', '100964406424233231915', '113920721823301219308', '105550104552066790954', '106717946845088683921', '107753428759636856492', '107097980510051172895', '115516333681138986628', '108067740959569006573', '110749379267845817082', '103470569272384102105', '111980447450367303472', '102976465024742837897', '108817085747440374986', '112614367259340988369', '110260043240685719403', '113097276181543898574', '101638158594369614830', '109800248650045926499', '104261715579659586000', '100535338638690515335', '101989171644896834606', '111654284395316165338', '100380612360163882091', '110479591560176287829', '107176596149441494447', '105140286092296509644', '112761340428079841885', '113372737460983473106', '103628798844723879427', '110532983418913074480', '109182513536739786206', '111975545018506506119', '106770065801865229562', '101288593495419475448', '103892116584595320504', '117366841580782589717', '118319684313833198299', '108981289415057818946', '109813896768294978296', '109998343271326218931', '110176872665683889634', '109602109099036550366', '103097764320602190090', '116792953962445337353', '109092767134549982331', '109809835379677001002', '105902716863305090394', '116071859350170947665', '112374836634096795698', '104376626976827590822', '112053177074571305383', '102665703604153831252', '101927231266861896178', '106819891249477893372', '103135699585421857716', '111499908439497508351', '103271875952524841365', '110394599356932147330', '103973579061859670271', '107650271986223730197', '103716847685048716973', '107925874955413651119', '102793072679802771755', '107164311860815549291', '102990886568790513406', '118146622799388835070', '108316757250595120434', '100461666587668689150', '100771715351072186974', '117105281573286498331', '110206169594070357955', '111133089087698745842', '103797409565331693058', '101354142248919379984', '116117732247378471739', '104548613378401313488', '117108270457271782843', '106775609116257959283', '104987932455782713675', '112433233162542061134', '105329929314379043455', '102902713496023362761', '116553061986451654496', '114873779025309870329', '117819259786373427219', '114738075629051960079', '107166369539777818001', '116520176474338912678', '103438332263642514693', '118249005460047214792', '110387558437847558927', '118337959785760721399', '106752261083710991939', '102178700954286324866', '103515511368545988114', '106407425466046895546', '108622331358244378714', '102011435135540036805', '117178002500766734239', '111042042545152659076', '111947050173538664918', '105354532715798223299', '114867433241649478522', '107602882044753150398', '114826457457941066820', '114853458007065354930', '103245952838925212735', '103321773837592872585', '114242352345417873286', '102600774742322762226', '103111382143198287157', '107279165621319207943', '111693159376916140495', '115185211980778442255', '100010226316651393712', '108541235642523883716', '102307008290001893965', '116497021361001964326', '112254467169147545881', '112337888866127845604', '101071438298388997931', '111290672267478599362', '107383157816966336384', '102549181577943816715', '101292327494251658716'}
Community 4: {'107747838010116449754', '110982103837515711455', '114941990960699549036', '107542742799095073899', '116604501189261441998', '100605864222557374608', '100471039405682805612', '116225608701357244168', '102266721632816665047', '115538552611628257906', '116272870812037282078', '116188434288179404722', '104406280327740142903', '112829764821993700345', '102301925235690691403', '111733089914140628135', '103847233025626346610', '112993721830940208428', '108645897735296485746', '107166288622674117566', '110970478049227720359', '106541664466958079149', '108894449265020302496', '105026434862126918856', '104345450242748116125', '106091050631218132314', '106454845621336612502', '112230908306595970853', '108900422749564778397', '109329350502612958804', '102186402010640689794', '106203113965926911311', '115919766952475225499', '100372135633760991915', '103251327896115493952', '104398296468605752825', '117880813751228693103', '117692603688082448409', '109710755292606584396', '113472184832544483745', '116909806865544039215', '113259665140442305221', '114729740472671073461', '116211042956302492886', '107055343031769974747', '116602440485633829540', '115601680394653074259', '105209854925481789028', '102076707040432400000', '113212564798246057056', '106420269962430318959', '108709810189955616841', '104917764558584600444', '116962153568597271537', '104985708532065716992', '100884676252145293797', '103495959414616617075', '117845373339891458020', '105152269532773681664', '117580704288376500422', '107192971553731708077', '118169756271670551157', '108183741310701689263', '110287894893102510451', '103379945640198599272', '105485669729443905039', '112314395542822752573', '113409086302056667844', '111975224012018194892', '114733221311854027249', '104178909261627021161', '103000734287338406086', '108975692760604949169', '115512167419051724028', '101494140056866451800', '104250970445890717876', '105231227402322347158', '115689262436942964025', '111310222808871521546', '101829918821056166648', '104392551078829652132', '105846917401692687194', '115078520436774133103', '106880894893281296113', '117290916422686646903', '101901232143740160078', '104519096412702496856', '104206303867855369291', '102256816876331385412', '111923790030827810167', '103155291053045215105', '115537548124210290403', '101854596522140504619', '116272678334257287914', '111914287835055721452', '102640428740489674973', '112171239641231279964', '116515627288174691729', '106523183092269603627', '115535806270815025774', '103911607910068922429', '100253500239541932423', '115739714059328962238', '106756633331481645467', '113289267877003023795', '105380757076586578977', '109698561708069608034', '107735676082414469548', '114443641173383728375', '103739365516449391254', '112652642866960214917', '102213916597870559596', '116804540314859377411', '106896148347206283152', '100401683392479420272', '117184181258526632678', '115217750279661462986', '116177055522111923262', '113884226784793043606', '113433821486381172445', '115639700532046080427', '112405160668581498038', '108581176656876634115', '104743722604111129193', '117554722970555088332', '115190453129354314624', '107004332533938320893', '104716550210056191134', '108802687698724664405', '113426663128872890250', '102087193593331908779', '101907373083489337511', '117715458422919571502', '115121985249152159383', '104604307901417940770', '106269556673463382281', '113345816382413741333', '112932480074118093875', '113440880897931183734', '109914328497683240050', '103045146129358694642', '116034683958714362546', '116298725614846078183', '108169649974588976835', '108347904384031658715', '106094656554215785968', '105771516686557171626', '104606614753457778918', '117538315488626912884', '116467116715634770607', '110890406272830624608', '109294555490324725530', '113327206574320929442', '107297193341674316334', '113146596813770102711', '117933248848152566378', '109340710049957632144', '103761316115981403222', '116419531887099225758', '102994474461903293474', '116239540022720337536', '106573170491455105558', '112256312261504958334', '117705989100706740667', '105945403054619746508', '108872036879266293791', '105552751194150069971', '111402923913640845655', '102912122949744003232', '111654988216301084265', '105148269330842682297', '114354012741897211574', '105614023028680810492', '115936804176235600319', '102108552957172689219', '112912440438084031232', '106022059623331640125', '103290228265979018515', '109489575895255638957', '105879049633297036954', '100313918372780761690', '101035128787411077971', '116624255331661641877', '115601875683038726303', '108541332650490652167', '117071426829430927131', '111538684930665702515', '112952402583202585197', '110175210245981011432', '114927294217645926989', '116160296886796853429', '112558842849268568366', '111698111324336656255', '109310085097774390482', '106973022319954455496', '113184091727451211493', '109371009787047031940', '110297516354913792182', '103125016160442645232', '116649538143102503746', '111469437334144611638', '104868766827614132384', '100661648032094165691', '106078817258497259289', '111700516584018069412', '108470782772821648496', '108110890780038071258', '102018898087387796026', '113683490470081810441', '112957065719498086306', '117193884974546329653', '104694788074649436349', '103604782822125275634', '111396408762595559038', '107054923314916484887', '104835099960990627076', '118330182822352792688', '117690673854187012438', '109901332639702690169', '108526365131194237973', '104019628676287434335', '101514976445246854274', '113566412796628737771', '113814992016595479383', '111151133269873073822', '112961270204495595553', '106737452392271403669', '108531255239680225213', '102132795605351994121', '107051820498210074676', '113806177849921829659', '111523509846064499365', '114782716597062478815', '105019697110407738154', '100458658122301138710', '107404242080797040590', '113622504050183066162', '108851026326071355993', '111846730353644025041', '103503784030163121732', '107754205740456364800', '112486405997992686080', '114955415628566000965', '117216289732773407442', '115344358112152398952', '101840970873676669425', '111522003007603813028', '105817808411979724233', '104572921120575457873', '103100179087770804839', '102202032356599047373', '106448502258162613710', '112299693545555076607', '103397817936898068439', '102255720890649514668', '106999005144926326855', '109035337652288604892', '114349130265760177161', '116678377243407600427', '116184062049364511550', '110108796184064856991', '113911596629754456986', '100354740668603824176', '108218933035613051336', '107018066359183517628', '114421079926365072858', '101284187122853794634', '110574822689595754039', '117467979182503050040', '104393406786094257813', '114807257227149972393', '102280081912845345680', '110834201342884968996', '108299314791839377169', '118339706248486457324', '107737400023695101758', '116772733228022884924', '115644063183821773031', '107091259205305492488', '102782208988867787652', '112156000858878605428', '117565720961223389542', '115836923922245203582', '115189217690184894864', '101510589209151784871', '105635031252803626892', '113327517821930496785', '114023795588703135881', '103384762815820358744', '109867081899021414900', '118164441818555589158', '111392229243756687840', '108904364100929057342', '100612998680943733338', '111818804268255727734', '100425739170055690781', '102878676849076003707', '107506834773571922409', '116111409898168592074', '112878918236054024365', '112092526384728873892', '112383056893417573756', '105665080337389619151', '104660118116124484869', '107407546116445953252', '107944050637158587585', '113656379833336702679', '117530250543183103093', '113684854375405108383', '100901649987363776394', '103560656277017207470', '104511349499540623654', '104590730428339310227', '116157010824114433668', '105035734217743300655', '105362842231294447428', '113509398790435664089', '117140773713859737255', '107281742023232478718', '116982703791258521452', '113172936350486247623', '116877098752708522621', '104944128365441598365', '118085624544356918546', '110948803218408061611', '110843410200002459358', '106551901875603098689', '113959825844609067249', '108375841941782733077', '107119125214160307479', '107250464385013836729', '101524375883443415732', '101732605149957891826', '102591124120451814448', '103524029725020180286', '101885307818099963648', '111674748486766258557', '106408731567711281967', '113139726938588189465', '103899939513705588341', '111465359080289844494', '103469386751228828199', '115242761961569258730', '114501281018969491281', '107711055055716135991', '113726904367063966559', '101517640605056528235', '100022983395666441954', '108907552935332685211', '111988916680313318873', '103481047858421470011', '109444531289011109804', '106671820158116584667', '118073857442509254484', '114725410996879442582', '108233823188831400390', '104723167398398004122', '109330684746468207713', '106472137404451336877', '116064889536351872000', '109278663555282462593', '115855823336434851063', '113679214233259389691', '118120574147655105587', '114476892281222708332', '115297377530426784742', '111863738350828395915', '112582061365461975085', '118133727980592486236', '111786873012848127790', '112058474141856164031', '114966435318890555521', '104474402194287396870', '117801150600464318538', '116161263828563383494', '116483744752939586910', '111176172612065342210', '105201578683310410004', '100080670028138179312', '113920526057233976680', '117101224208921567067', '113944846007907559686', '110736766605143487896', '107920154302568162488', '114191845470735084297', '117484946558916657452', '107682748671253717847', '103878115150490505546', '106526249826621352808', '112894485849628624264', '108470239770597604472', '100588683019319620113', '105019708274021579278', '115724883099396204735', '111741052314397047773', '101554358085977409453', '118170768987466114474', '113450963153809629492', '109828573684213237175'}
Best Community: {'109549749746353031555', '104294083885937159989', '114051322401103919567', '117574356623680867920', '105656942431287100226', '104112700502285331526', '103814318968872067095', '113158814439512755352', '105720374917117266351', '109903915442790058971', '109970338579215706051', '103650951579527262798', '113977984500465768287', '115038846156832248145', '102245160667846222465', '107958711860940415885', '107622876449600446989', '111124838372075709293', '104051069913864446196', '117440562136163282023', '104962347070667053810', '115961021629090154025', '101384112455887732241', '117826637077711958172', '114858496219143473247', '102518365620075109973', '107489144252174167638', '108189481625587435470', '100216099807028197176', '112369916221417513808', '105730165898914391474', '103200491340117663153', '113312804462990112705', '114124121045669648448', '105164621447300845967', '118357019708110162087', '108612610644565864416', '109128179703780508212', '108986482395975467331', '111464294370388556424', '118026639398463272784', '106073502505833617615', '107140384943910571494', '107028157462218372820', '107901181807999531493', '107408720924877751027', '108527329601014444443', '107591005438840138933', '108909492433674629621', '106658849511427440492', '112027450030109652155', '108805430409141907975', '113537711651274258466', '101763511463762540696', '102377882249382281108', '112143275229786859149', '112917540183250234327', '101140516949313637221', '116799045993451756042', '111433926516886244464', '102495734785874420854', '103973455051678273599', '111725564594659562248', '106115198697251921957', '107430862196617669986', '105072305864951447999', '107379680601055044776', '106747990444555145217', '112065005261622211649', '106075926887576280408', '100733334063966339322', '105409001356827017587', '115778688450213791339', '114894373995529057283', '107902791674095682080', '101565121108233400534', '113686253941057080055', '104384618198413714249', '114454401626173542028', '102476152658204495450', '108542426628002931624', '116558562366390541447', '116761784986758593534', '115105647022907007398', '100741797558437727880', '103568382669382600704', '106289562822644692555', '102409541521880756024', '108729164162563480433', '113367609333589754250', '110301391405974639830', '110414918019803275342', '104129842883884467271', '118036378782834084572', '113625462103500841369', '108359434857750473549', '116532796765106918781', '104306683219947597418', '106133480923323663427', '112423003619203285770', '111962077049890418486', '110217867677589593536', '107004843925454095805', '105502659434999281505', '110457476828368769831', '101403398734300997354', '113464569897311842405', '114058914080826728768', '101962829696981365403', '108439032486286528947', '113455290791279442483', '115230695084310626614', '110486517623939606418', '101437802758827481019', '110427026721802962737', '102715042925211875133', '109549484898750371360', '102528718122061029071', '102492263388954313581', '102383418437695456740', '115589104025084887009', '107625658878407076244', '117937415022745482256', '104975154049785009296', '110005870117760401605', '106369182367169177791', '115890818529847454494', '104380036950579300637', '106983800549406471589', '103911977826803756685', '107362628080904735459', '103009042022920905686', '111076127406109584342', '110081533733339647985', '117386232350873428301', '107262957695875184025', '115653522232867695783', '113849138262788701414', '111553887229728062170', '104081052260915687825', '116303122205999176427', '110749114535858679949', '114551199693334565912', '109556244641607065276', '103391112730568467076', '110570190335649752012', '102911609271399055065', '112471890387110967375', '115275485457246100819', '100081010984768669358', '103452223649907931922', '103147347309732225253', '114431900614226435491', '103992316443464780047', '111769581907361947424', '114823329938030546555', '101564834006346952568', '100114474888718501523', '106539835304510344813', '114547264440714100100', '103667678270324179713', '101435445820764233826', '101920446365251607478', '104129971305612636060', '113141491911286106535', '111683391686274840331', '102900716184466879402', '109711721158856077787', '104045511944341391917', '103497375962504727564', '100142397094908216555', '100646334382638139241', '104437636865235134368', '106909119051058200287', '116040565882702717981', '103306876714294066693', '117376164800382541126', '106499409180130178424', '110573952887886961621', '105459830584243636071', '111240230493422963077', '107701945493855915896', '108770653757133854006', '112447253390876285565', '114536133164105123829', '111718830236077991058', '115304232819929344853', '115059793966709655633', '105584766690422580666', '100936611936552412031', '113847951893881070422', '110924681541917174512', '102227359845636175866', '101793532287583914396', '107485702249108153532', '107742567767125793693', '103977761514480488970', '111346257562521323252', '111153455306955308157', '114489504825638353488', '109031486518632696635', '110258598415939907971', '108705174211639807508', '104072948945662204503', '101418715115916934669', '115774797671804302541', '105284909171916066479', '110492963926129353210', '106488284533523054088', '104602423740417750584', '106644585677637197494', '100996052305795888056', '113330053950020592701', '106123026171763346651', '116056645771775490363', '109782743775362085383', '101163289899816448462', '101114516910832196188', '101840590148844309820', '115837821650007187903', '100234834647440713663', '105785197801929483800', '102637183526072842850', '102373191596205712937', '115556579762244656440', '103761326311610249621', '106501988136092543170', '110036682383342142442', '115143234371607892983', '102865263115020893218', '116475141635496647275', '110874643485851794601', '115248125732252515176', '112708194574821912619', '118274547296450170219', '111028035383789880812', '115971103286397223281', '109447323719942836871', '107870240225843632731', '104792719356592263558', '110168117080267015976', '100095245926948995335', '101130571432010257170', '103929313090037971278', '100429564727464307274', '113356364521839061717', '102349305007676725479', '101035196437264488455', '117757565120070816446', '110548244043172681974', '114110327402201135668', '111856427400498745265', '113006600504104125846', '110482686815837630637', '117903799006890870191', '115518936622420587351', '115560798821543443948', '111907009595057957530', '103133377455628166981', '106567570642614609073', '116268124700162834377', '108972862430615180924', '101059049290567215584', '105396609818194584786', '107675155083026839050', '118106153060408840468', '117783113906561198831', '111437132356319061774', '116277430152888225999', '113209788861124695757', '117308228070864161588', '108348790329129161183', '111232346000552816062', '105734935003600818916', '100516849708142559734', '116701660840702373805', '104316443417435189825', '100377493270775536948', '106586390584377828999', '113490041785449486666', '114390577443742844389', '108629717769018996477', '105943946099362806788', '105336425684208963598', '114369704013100203178', '116369071500456395369', '107703405132139524311', '101992123652999935743', '100720381549183482357', '109964959136982994865', '112111076651793199305', '115571998474046088312', '118437039478327492127', '115582623750221438794', '111709710017308986916', '111720952354186227548', '118281061832654729973', '110466688127241330787', '105950725902891401635', '102127076088332626811', '102562092024109319987', '116197193480724162859', '114153794734652455699', '113890545538451545819', '100542372891417952741', '116247667398036716276', '116043947632177598920', '115977330688436384446', '101789011227801183737', '106243037947112322316', '112162067187975810298', '115220228182866909424', '100962871525684315897', '107826059696278341352', '106148235067079427902', '112957708071337353347', '113108445353518733177', '109795454744520479022', '101643794434997549451', '107877648970779188077', '117009886930068964404', '114765257755692312021', '103857876783441100226', '118376303525124349504', '111474280230597268474', '112661262066626464523', '105228323457033543279', '118390286079345532806', '103586615087663445665', '105256156026694816333', '113795961594472514455', '103520907987098229443', '107235139478887256327', '106831762557971378854', '112276313212733068188', '118088897327749634204', '103330025858600351508', '116995710336756123292', '110747746419769300628', '116703030433843502178', '102568229143155019755', '102864451869463538759', '118418436905562612953', '113609359086719569624', '103414388869473777990', '105706178492556563330', '115970197492058000536', '100724332764877363114', '117876399076277118155', '113097851206100618060', '102703372429818974972', '102244999235542855716', '100424993750772730018', '103650703836816496431', '101188200134011189910', '107948650868331033738', '105343512238569231143', '108584805279585306962', '115360471097759949621', '108177835910929170429', '105551989431666449555', '102390118349128083852', '111132283845303158546', '102616149286682191474', '107330218258870552495', '101409166686823420239', '106360687191375633839', '101248054507015265353', '106661386135469061222', '111931223719713971928', '104454175467350464887', '115080215652229659698', '115227158283991801388', '101925447418700964245', '118210774411660218412', '101240786246366714589', '109401201653736330160', '100968313568314999910', '113654461547690050667', '118288288231292086627', '103895402092394980881', '105888610649398488384', '108618489069378667186', '117059593834355077199', '116915389609964980297', '114951153220032017716', '107355938148825004416', '102511868205585278752', '113190229460560085138', '102871123574468799566', '116000809317294842395', '107432398539341365940', '116511752882326311047', '116183052555423440686', '104330156508504717257', '104920733213047887355', '109557335345467356244', '116047064092724050557', '107063521484195491203', '113832372441187524663', '103984263629438381785', '112617127041903537004', '102755548808767411605', '101691152556611912102', '117681034834791918293', '110806949181190360839', '105852782594022510198', '106131533046921693069', '102655243537270905389', '114602871833437671294', '105656572281780568085', '100773676343502297089', '114354878556558710088', '102143577107646910352', '104988917607101472506', '108306073756639379939', '117326953697823621359', '100813229168405788654', '116947923643606285942', '107773073025291449903', '103613260673488067634', '105213636585253009224', '107494834634231938072', '115978949584209885559', '102200175417231899136', '110833099456633722038', '109522193578764168033', '111396505044414091201', '113543880726286626830', '103275414019940070295', '101599646443148119399', '108510029349718795057', '110051675187410491718', '118369314436085435945', '105547060999578080024', '107894914670080014116', '107459220492917008623', '110909607055906584548', '110584481927562150689', '109718346641639271496', '102195144388135237932', '113278937129481000981', '112879207422835329028', '106020745084647886919', '110552992658041775740', '107420755679696384063', '109187026428012507334', '112775759305765347433', '118147897097670149361', '117039260735952140259', '114767803040499829479', '103886753187082859922', '109364225972033274255', '107119940474246316259', '117697399358826098478', '116219534929662479848', '100616009114067625121', '118058794383720702307', '111627219638715165418', '115304645050453722342', '114288572990229558524', '108924136210249299218', '106322266355568739242', '106677033160092990257', '106255898978966943774', '105433868410119060410', '108981679893410895534', '107347089538988597980', '106245708073909716431', '116098329946547517089', '111312577350562637368', '106758488395906535821', '111287774328521867169', '104014798881761369057', '107542632252660344559', '116696943168863559388', '102873175118305865375', '111243892781101553573', '117280301082168371727', '114789800183078016840', '103903543115451588953', '115773593461160257661', '107771181372242547518', '100185707560478368490', '114056084994793924628', '100892612779426154375', '117884476143887009277', '115516198122630950271', '105375708451104180822', '107244181382329628877', '100513454716900546707', '104414006889440330710', '104772213693268114793', '101265429413963140460', '115633632300685704236', '105262362497121611013', '105006839544396125723', '110837982014303057310', '109220060006128553211', '105873814765821560444', '103878892760050193072', '102233770004174020180', '116133765361046189827', '106753581955676569553', '105662441312581584585', '104531052356366757730', '109533441517984298838', '107543460658107759808', '102909547289727561969', '106363891658655148422', '103105624362798054387', '118048139271163842678', '116056482297838775754', '109213355974494564760', '108032623298499022371', '116396113048345875138', '113626341655414044020', '114154062944146796931', '114699780864258329431', '101006001190131292549', '115592917377507554334', '113290698547751890551', '115115161887111700191', '106813061125294796726', '112750091316252656625', '116682290311789132796', '111903892788414265541', '102257470372859959315', '106458554244835260890', '115011646412956679108', '110806755301520450833', '105146060706924233930', '109774951215877430341', '111112809838472063992', '110845149859025684138', '106719979779567208605', '105040001333571511595', '104296258582816548190', '103846208822256432743', '116008246625614132322', '114394128653474707020', '106679217619062767542', '117058794763073546749', '106453531239987697809', '112671613807103204042', '114764567692252908296', '114229157887417365950', '115209321914160323553', '115319136089718062451', '107808257391213832544', '115614791007645952267', '103698889037599783920', '110329781365538654444', '101016221218358645417', '111873853137122484021', '101586550030071389138', '109268388872941447574', '109294957777512802411', '112271931220583464729', '102370747100847006365', '107526321116822867905', '109002964461887714649', '110450138515744932294', '114045800510530461940', '100201191661425552413', '104548627795526843775', '117670223716788465006', '117173444820116260805', '108096298177137829845', '114052870720720466661', '114594095199361564465', '100994114474811451452', '101828183984777718546', '114812852992972288830', '111562638514922412630', '100774699436094132400', '111699855306814304937', '105362990780240393762', '105291328440562321682', '100519245975462538531', '102554407414282880001', '108621605232188649028', '112798516308771746920', '108215644829092784557', '116318044389289937577', '108803138068984169101', '103914809547503560483', '102762278318790381974', '111862324534985995584', '116169862173728406534', '107568623059464576350'}

Louvain Communities of EgoNet 106724181552911298818
Community 1: {'117429013107995808644', '108864551904819486190', '103171849011748425097', '111164095920889813531', '105164570509765092084', '114425823354807757832', '108865224681518296173', '104440241622894191867', '113364856660738963998', '115829633444551708609', '109721367307563395695', '115047896996200277508', '101174544649641947253', '117528398613318925987', '106039133457145256083', '112332733042266989698', '109060858971449443782', '102585224641305882168', '104773279548546374529', '117474473270416055253', '100881617966181022377', '113857713997823886995', '115810586600606003097', '100934380959521245889', '100268819871789028907', '111666959095947698908', '114089069528015035598', '118177166106747864591', '107980702132412632948', '106792630639449031994', '105081887616417085194', '104991205080744824165', '112929717560661562705', '115524852692828190898', '115516171542271021123', '104550678234629742078', '113255309873341997679', '117131320813354732027', '108325036468578880406', '113288790980179920951', '101027357120673263054', '118207880179234484610', '100971870367870906394', '110908444150012188782', '116671803269225998491', '108486058508775411585', '112206783593388775049', '100948037421828558360', '116966817674464665586', '104542524024401372520', '113570225939744343687', '100730482429607730997', '117198316664830078863', '106517092226488584705', '118112472205861065835', '100894513529515310753', '107297699164812496058', '110327927473855794849', '107945426404682361496', '106689856342933829975', '106393478695568433143', '112339769006469685593', '103564230838018928961', '115839767455233623600', '102493891906301577447', '109130886479781915270', '111935860955005881764', '110242571917078285181', '110836322558502335897', '103336848503251351844', '103188948341310400908', '108392504208314197482', '102998696062504667685', '109097951086648957346', '102512310412972518336', '101023852178007414194', '103625305650782852673', '105076678694475690385', '113469309872759209920', '102725109790365996602', '113751353481962008916', '106154669044284257296', '109919679182093139567', '113025758348628700217', '103626856183430984767', '100159937686553564234', '103668412054887723210', '110543757125367015126', '107234826207633309420', '116269625715795017464', '108334318341392054568', '116515627288174691729', '100173452066172931939', '113920684085515272676', '109216467282764610685', '116729089030338695543', '115200251016762857369', '100555383096414009506', '111221480964536174264', '110513964841937233661', '111931627441418090108', '100095669250946685587', '117702410245683101961', '115250637332832082661', '108261172458336520976', '111185660759294459691', '105998246897528884201', '112817227923667759331', '109380443971181362791', '105772184918019707931', '102678339976587419170', '117861338670157326726', '107155666869509300116', '103965582964444715563', '112597557223321833686', '111499016778755078481', '110141895783103581727', '115349337704406940923', '111037600142684781907', '118400237210131015321', '117026052320778734224', '111738240095698701333', '107746993777851440213', '103765655241162838230', '118446147598193798536', '114236604403554541461', '101634980625828210366', '109024079861764629781', '100535636012568504556', '113612142759476883204', '105108491910465347210', '106777791961071223707', '101434622717598713384', '114723964985237592593', '102710934618102174414', '113169713749496726739', '115855207434019427246', '113801236315350503728', '113651533166317708938', '115899514744658620105', '115361545888900770383', '114725869543399343504', '100262595546646927505', '103233967921245494760', '105989807116077671770', '104629412415657030658', '115711608973713137448', '101704103161442695877', '108416974297237895157', '100025536618853941891', '105642695144101051932', '106336287464172898487', '114290753525835355281', '103946955386081802278', '113359777710817483258', '105207689891479566260', '100736094401428282681', '107325929013361579686', '101183471597929879944', '108921476049574227976', '101377053267560854462', '116899029375914044550', '103016521073558596116', '101794216671100303552', '115514397255079403751', '105459039689531835195', '110701307803962595019', '112759904453577892472', '105901259206530390933', '115565811010545226083', '110563351377427897709', '117373186752666867801', '112964117318166648677', '108754297498548563397', '101945672942001217128', '113418995361969717649', '117884007449109471406', '109876467727174291780', '115748662504454470929', '101174951617223562800', '100446424597147316863', '108603838345390534026', '111326500706485286272', '118344481609730757471', '106787150560860988413', '106422711035746240826', '115109077044202722504', '104284466618076664967', '100789590127918881516', '114128837647453534451', '102839963139173448834', '105674332362858502941', '112810965074632510524', '105709875012625507570', '113057286764851383469', '107140884077582692033', '117599103108596130864', '110691778826596363915', '106875990476951662693', '113897172636530312950', '111769225236844105245', '106470960570872432720', '114037557816209327028', '107033731246200681024', '105049886932332906928', '104279244238026533071', '109018224010056005635', '112365355669535634753', '117841261693434574785', '100277428934860974965', '103691312271671214670', '115976612934744106451', '107965826228461029730', '107047796519061210494', '106008941849648772680', '113346801688541032665', '103389452828130864950', '115671588824585902302', '114790424055754975707', '115066534284029624019', '113311736332375450968', '107485702249108153532', '113835509938352188173', '100124389520659251191', '114126118441356742729', '100498091085142703743', '106268128704132883440', '111832530347449196055', '115589838720411185353', '108067729875824092494', '100978712768490992971', '112944532473909341307', '111098575968372675699', '107738046118180603170', '100518419853963396365', '107386694103447865010', '109964383582532868438', '107955540453906207440', '114924247182402456064', '113117251731252114390', '115949235079382739229', '114896892290324391860', '110648497127606323619', '117078929621673758896', '106656341103608827757', '108189587050871927619', '109838958029720050470', '101930732356474123642', '114771302128021571825', '112642573356460292505', '113171346721591078756', '102937884157580148617', '115404182941170857382', '104457994442783581478', '102216887206636463918', '100075356758919993129', '108797840083484244237', '105374700688270765519', '110095183018033797368', '115989323496360706014', '104214171578749661248', '111736936680844070794', '104531609977012265422', '114668932913459899449', '114524640852173748484', '100595379176233392777', '108894779805940659869', '101776230590766727790', '106749254706410187997', '118122556596388698587', '116502877459121437690', '113172095585174683363', '103803759415221345211', '114916424437953222128', '114407290472947588380', '117769401199094282992', '115739378269261680935', '101701640282177869919', '106372800511710859472', '106189723444098348646', '110215372857969443518', '113345621158656129639', '108920368855876462204', '114601381286867969365', '111091487387689822537', '107330528562005281406', '109703654481345966244', '102572320061138442096', '104147032621576433590', '104883301041308726636', '103024721530413569142', '112650348159434958899', '102508986756012589846', '106876108861840284155', '108159551615224338529', '100041310890249910592', '117381651485941996132', '114994216108606649534', '100488224785956829033', '101234870326392307539', '111148929145535325154', '109967616069135434926', '100382502425185475382', '105712632219024636878', '117560434946198914644', '118244442108112916269', '100715738096376666180', '112036164749195069204', '117889380857321824885', '114053103699743693198', '111501187421350616642', '108188280234991720750', '104395894182593241283', '111089720267396135049', '108233028875375016776', '111406933001277454718', '117161668189080869053', '109610954243983229925', '117689417145181059475', '116706979689166677449', '103952215474318614668', '102761022316829734971', '117256325610241631146', '100537991844787325512', '116223161912034050240', '110352049954858592591', '102496256681879364661', '107797841320768724118', '115793765515193253189', '117626851040477437361', '115645005407970286730', '102199777787314348675', '101062649219544970331', '101044647514229557166', '112364132652438722780', '112844561713780016118', '103697821787469756035', '109280758276914754699', '111640272568271242568', '117377434815709898403', '104625241288501781571', '114274687956791581923', '102552895604218641554', '117324905176396235130', '100985192783512595524', '108703512926406528929', '116426599319620195799', '107534991451098430533', '106026445270708973611', '109302113674484082484', '115270991787918797589', '104242709429304362533', '101977577738512604757', '115863474911002159675', '105431853163089795769', '113217924531763968801', '108584546441745128640', '113512364761904452911', '108082478497335384404', '111695952230040192278', '101748907637804612251', '103514675920061873411', '112115199448636041126', '104304812570369572837', '107552965844516484621', '101844248571144042569', '115484551319269885419', '110981030061712822816', '104233435224873922474', '107026299993226528916', '112716356719620674952', '101886706065800845176', '103907806627406122152', '115777169768345614675', '102479184641434405851', '118321989430962111396', '112198627258727043899', '102545157386069758709', '108883923090202244243', '103637153024917466425', '104681313125038107957', '101206766570550710645', '111411000349269479772', '109945968393665055461', '109268440076100174636', '114089739152726761492', '109923941665874520762', '100940716892313727285', '100193529331792590881', '105410260260988868986', '100603420708037491047', '106968322781665348075', '108255750659110762991', '115623533572523039914', '113279319044985638157', '118320665823821681206', '113619286206637523955', '117490083650718194659', '108090299739421355139', '115351143362852372380', '100322256610515857927', '112966941116896663612', '115445433074419719117', '101960720994009339267', '106214168948760942073', '104508507682767510004', '110103641077948436261', '115468408499695328714', '100974506360006530750', '107304599129049310946', '108772200278976934119', '106392802833222729376', '116325056054102075872', '108165165361798920107', '100194394535307018014', '112073853857133821880', '114133424228405038490', '115056011540871202403', '117984723895322432769', '112032230546743091127', '101061020217230062845', '113291236578795391211', '114202150062599138446', '108640673873589796416', '108792139184701213826', '118299777136505117634', '100882238047955853731', '113679091104569847886', '104192099372982491378', '105435074544337918474', '116927391465690022495', '106143004230434426104', '110182488357041602714', '110215708496522939991', '102945758979783986480', '109861183037883512060', '117752870486619693120', '102474919849914171518', '109051167482734565875', '101235095970404720691', '102298718421596692551', '101567641239571518754', '117835008541331275036', '103100496883422151101', '110712282995092828323', '106665185918564754695', '113397118102523602405', '114082129627545059603', '109599220524260072765', '111596893581200856667', '111203177111013925515', '108257742736725504517', '117378848700596735005', '102923147893327767382', '112226108704688540728', '108832773152747423283', '101305776875945822989', '113783272002739131237', '103385763780839177438', '106493780402278226735', '110286587261352351537', '108186999795479387281', '100269980559891536109', '107875584177081127211', '109895887909967698705', '110727249496967897430', '117025861934715115235', '106228704831672899058', '114699336529956127102', '116140208161479945314', '111090889118700110346', '107409876316390165474', '105931402039205614444', '107287291536566815733', '112536035689556132969', '101490250519322292462', '114188216603728208646', '100834378485895409468', '115106448444522478339', '112476991545055404616', '118178631780394474295', '116908845106079512770', '102382264512943710946', '109343820655325307209', '108574688020691152748', '115012093592676187890', '115335950996004437286', '102152774305529158166', '105347537964295352326', '104336243114474051430', '106532684826293540578', '107460400955464713852', '101307099794854494980', '110357001884194145645', '102346400614635340030', '115744399689614835150', '111005666466297482380', '107753428759636856492', '111288574156818690676', '106533248943352121512', '110749379267845817082', '111504766733019844026', '112702880755434909062', '108740570618849247850', '111164228693257897305', '112614367259340988369', '104176937291281778869', '108028643813258312732', '101984790166572778922', '117420368760274729369', '110260043240685719403', '101185406398932804414', '108150835875317710924', '111181389036901378787', '105749394083843362512', '117950453145750849911', '107345380056943591322', '100313449630224835004', '100535338638690515335', '102147343461272423807', '100585555255542998765', '111654284395316165338', '113138134158040553156', '104965028945637304221', '113673756354863552294', '109770122122532409357', '100371752347563784684', '103864158830757222124', '112761340428079841885', '113164038788726940319', '102736222974258337930', '110012123643219804319', '112324817510481880522', '102222722824849858928', '109182513536739786206', '104834129907874592944', '112026058728255591897', '116541152567955767643', '116313642078196142578', '104215081746139431649', '112070836331526481588', '112376477101571611401', '109769935366217033478', '107540638333054762391', '117220625678034723010', '107133948555394893679', '109813896768294978296', '112870994374364427682', '104323762834614989157', '103740417113214720878', '106727811555281104992', '103097764320602190090', '103814653718186136893', '109518670979375035450', '110012545983559094076', '104863859643346885734', '114573060328510500521', '100830163544279020460', '101057616370673656059', '107410585863197912809', '109174551750397653742', '101530982560213613608', '106807787807630457447', '107429025521549453511', '105923173045049725307', '112741876592615487453', '103135699585421857716', '112483309917631634011', '110349110664408276955', '107868937218055010689', '115963821022986200770', '100500245299584541581', '112375066891532385235', '106745624912469757770', '111785060525649077044', '115527632958457358109', '109193674823031718540', '108255121787158995006', '100042105400303837110', '106366615678321494423', '110668479729372555286', '111133089087698745842', '118018621153265389754', '102463809205898225329', '112458713098744435239', '109471523030159349342', '112439267620869130664', '116312861051138180882', '115229808208707341778', '100219691404074384850', '107424684032120027870', '113180815516125966443', '105854725972317368943', '105093051874046621921', '103691436372574870084', '108062075979880389556', '112678702228711889851', '113028930940007165058', '109829103207295789295', '107166369539777818001', '110644979178705230714', '103438332263642514693', '118249005460047214792', '102826652809724883705', '103911183408644149411', '116756512638937817440', '114650747666128230743', '106752261083710991939', '114056321367305046475', '114954579537134392510', '104482086818095930400', '111169893172161086239', '105901258272269401150', '105951083208800607266', '106407425466046895546', '111293022852677971506', '108622331358244378714', '102399741657103137277', '106697379087705183224', '104243053732122719340', '109262616794768311251', '106702963465506867582', '102646278174713579067', '110441797803247642088', '104092260163270440688', '115137019664380163079', '117969632080197716194', '107602882044753150398', '111479734183291670962', '112895551135660012999', '104914829730501706316', '109342995284180071035', '114280709508745356731', '101062235821996561929', '110792797923527485789', '105769508324436137332', '102600774742322762226', '104577330866768309554', '109926473783208635050', '100892411376421396254', '116321314375336897090', '114778355221904601456', '107851284742690875601', '114765095157367281222', '111527837101258158939', '109074857816744029470', '108999765655839446046', '102307008290001893965', '106876635197485451710', '110828670835957136050', '117523047521837823505', '109819399320527487347', '102381548704003539297', '111420149713622710207', '116564746836220811723', '115425017959501168550', '108442197853964458609', '106111195718302652758', '107656088609554509650', '112416140262327925559', '114487965928288927815', '102834614007561141183', '106312895983244085949', '118216759969087724610', '115177816143495522325', '102991700177087923792', '101127849472046131831', '100815200650548753269', '100871988633812822339', '104199015136082090302', '115523108392991665451', '100340837185032075992', '103493459351957813291', '114401727024677849167', '116375213592391711467', '113882113745075873153', '104761281480373833739', '104474227941534479648', '110538901086027880345', '111215626086255858123', '109466960372762300135', '110349587692857642647', '114892703028341590446', '110519684104194512717', '110258899475477198037', '118189632042502811468', '104600296217176278045', '116374117927631468606', '107531155995244310236', '107013688749125521109', '115212051037621986145', '117459628471244992913', '113959563011490471954', '110318982509514011806', '104532246671367338631', '114235594503919622485', '112915952962578336480', '106107925365647314226', '100382076211124259598', '106078945425159812521', '111368128955440097331', '118140262655199793272', '102148902002906233170', '117344752225183656923', '105459550536348114145', '118227548810368513262', '104450760987525660219', '103168036412553245688', '116131244044857846351', '100582158600886787192', '118225519006643983311', '106473332550730818968', '118153417237614725639', '105713678710548955896', '111714769899525603342', '103363359562250742737', '106493629342570608597', '103821567731080143888', '116807883656585676940', '106935269738929891479', '100008438047495460295', '110351160992477343545', '114489276586542400632', '107808951807533655192', '115632939368970139294', '105108471251733473504', '115314704721793037922', '102700271521603579909', '101169865857654555922', '109448162492198686266', '114917776781939549995', '108597108691073044868', '103140137391526341351', '113351703941294630458', '106318111152683661692', '109445136842856929944', '110315521977553596228', '109896500020068316720', '115959122085580299826', '117691391504351341685', '102305438832315209054', '115788203615961124571', '116762461061414014956', '105343468977483636307', '113210431006401244170', '108610056059491923585', '100250719688614433914', '117602624904779224395', '106548033421694422554', '103347174328293237566', '101697775213251991950', '114313391327271190032', '115569337548380164808', '106660499961741445550', '100854202666064752024', '104577477189250223067', '110193533410016731852', '104753156470151028358', '115952742972415824602', '104861455140173164919', '111185848672556379969', '102706947732554520786', '107896527414017792767', '108718290339280456422', '117152814213463502428', '110858566556215922899', '100871232248276491534', '109106843297496158611', '107125656733807816445', '101261243957067319422', '102397052073935758476', '110101984758324108622', '102864603075591269997', '117564596582351536596', '103345707817934461425', '106600962597764825745', '107989370857115020482', '112726038360301567381', '102737788855280055354', '106056812477855110591', '108896556048763968559', '104612091113514802664', '102576348057540922743', '108432909864222282451', '105637293618598027400', '112783904517647178343', '112975947891556571931', '108576950625288563489', '117321522765125194699', '112269775811709161979', '117096769294242969922', '110929351399428170240', '114753028665775786510', '107863815725205770085', '114092877557636198396', '115360979797396777969', '114629508960670409934', '116951145888391044655', '111273350318354404555', '106355261544559696871', '101627184386225671987', '117997508248143467215', '102221205611883843517', '101501473678884526949', '106489213738169001058', '109250100231387503657', '117831948350177566513', '116059998563577101552', '101720949843787442951', '106434073353360803681', '102381449495144889203', '107241142244507545804', '115106680289932322561', '111601729473858041964', '109922076073734754844', '107587767610354254576', '112477381832788364129', '100250696754987625379', '115658896387238242974', '104849340488933629464', '110937137992985950150', '102197284839293503038', '100709366424987372595', '106631699076927387965', '114188765352122748745', '113381345113137429126', '109140277806644720261', '114277687548103339609', '104865837206726587564', '114549564725160709822', '100807948259274480594', '103929740436666277619', '105780487374226393830', '113045187260472773925', '104405539079062799451', '117217807403956460587', '114424163811716070551', '113006028898915385825', '113072597372460461083', '115919664843599780912', '111009337060958697932', '104390246098751387487', '112900861098428671533', '117540092106869387764', '100523784851251213675', '116568578395534463017', '116416314233992548280', '104201441411804496708', '113001073761536909453', '114149296801704936672', '103282208979302705273', '103399926392582289066', '109550818599769670856', '110808332396199370089', '105415132823244013603', '109410049853740963142', '105910977869522122580', '104961406012654314344', '115916689903804116666', '106391505795084010894', '103776556304688195035', '108172009599607363531', '107130354111162483072', '117378076401635777570', '111061467082516364992', '106526452034734966566', '116727951144543307899', '107420422968461975442', '117959241991509944145', '106521388020777868025', '115422622153710387598', '117414240941443846478', '113593501038935994355', '115818365607064275331', '117421021456205115327', '111811097894909948082', '111585581956730395692', '103522841430099843089', '102955281870955134299', '113010729939949185045', '108696582604808530200', '100397511207083609950', '102980854309172865968', '113544612456362856267', '107006059340452534782', '118099811982559640114', '108592761155307936899', '112451028459884611717', '112707199408484711520', '103541694080221120019', '101010433515025028997', '107399939660118023501', '101951294740286010890', '111088960949686598611', '116812043050833464706', '112697945783971379741', '102934220817987641543', '103172158448932010502', '117143263732114637225', '107391346918211701146', '105240469625818678725', '113116318008017777871', '105421989284418308161', '114998005307649296364', '115564720243320133605', '108510261342123234892', '116588051824631936519', '113664792180690237922', '117693415411676715849', '100492431527288250143', '111105792005128537628', '110404902994335579225', '108033818031897165760', '117617463050753227430', '107305092312705285731', '115947571425501492839', '102989073624322904979', '111294201325870406922', '107379489464447013340', '117139907586011263319', '104054615564975632009', '116992221479414639679', '103343410323328731347', '118245582992926562637', '112974082547153331507', '106802084872920510496', '107668018853508633698', '116168738680304175903', '105382907771397302166', '116062862517105973396', '110378953230340021029', '100696736492387120828', '116963992369982295735', '115710584429852254478', '101057596538127360985', '109038475317623078626', '105545068944703206621', '100522625561161188418', '109247306373593947755', '114244914082871792125', '101560853443212199687', '103871883270165000246', '111538009015644508967', '102088173699409175139', '116394575739281318169', '110209787594312878744', '102896689791899460747', '100441642353694045036', '101690858054612129921', '116768967108862685383', '114632420693151942233', '105201176373156907412', '113603540546097369518', '105621256641165170370', '100412924688231832713', '106990629754929211946', '106829364795701933124', '103637004042802406296', '108648718072351487172', '108897363724526154071', '105722900792713093105', '109037673813544779645', '104003218615150837061', '110849429584485336015', '108961403889829901542', '108729927392113951912', '103543336764649563510', '103012564142649561853', '111719533163202900131', '110623746254439487621', '109714254234974197507', '106459438215700058744', '107606703558161507946', '109886504130820190430', '109647414478579447218', '107261842714883148826', '104490445002708527032', '111285782175840598932', '101311645735585775899', '101935010073334602731', '115314902915025797112', '115621287468218045232', '102110715788542150395', '105787363183175221611', '107320030937966635528', '112710501221399450850', '116831783688307503105', '109731666173059832409', '111924364306669542201', '103903198087988193655', '111091089527727420853', '118246412183062133215', '116491285067171323298', '106143876839173486558', '116989886224744526699', '117033715264863371696', '101111725148957537937', '114685727151899977785', '100784670873737717716', '117673062930419636633', '108618201393659007488', '107951823638685687042', '110467702883125654398', '110836650556449892392', '101230102913877281357', '113941754758699330333', '114904352415796399155', '104458801156000551882', '106975707959313051828', '110667051989318694079', '111797789494011250472', '112403562981201111940', '104464509525006371077', '111314560398897822177', '105279625231358353479', '103300363750121441954', '113618186512902058035', '106461514211730207895', '109938202835872364257', '111310990991240556038', '110615203095633370838', '104765385972302540562', '107833107845497630206', '102094472433974490705', '104487667381992067425', '106829982251244280155', '105273428597140573510', '112711154374511525164', '113740905109081801596', '113891423043364949268', '105658879872801771303', '108223422178494633308', '105545635323537037809', '101023108591163366943', '115813646159649714247', '114979733565079457374', '117791391761541223690', '108427814031519898124', '104764198267567410759', '105822688186016123722', '110741836870151771516', '113489241287639165132', '108794292461789825190', '116986422495636163350', '109412257237874861202', '103861741370066605527', '110030752161435403258', '103887646945247867113', '100342703577899262613', '113609548050074203851', '100258208745065110297', '100101132561104295530', '115489498904281734573', '115795922793625343479', '118413369000600998624', '102950241390416468435', '100074919848611839400', '104516819846796601045', '109555919001321700626', '112326867483489579883', '113312618768961578323', '112055234430263833119', '115982989172889057014', '111336527206042452530', '113930222818178989616', '101835433272879715504', '108226825694145957897', '115762948355957985448', '103322096164320811619', '102648148748642147788', '100335496845020065289', '104227734437064715480', '106416716945076707395', '108178180066149902997', '113082126848885774249', '116470022031391579601', '102536991536106306279', '112141931042568948106', '100281903174934656260', '108770025895417156764', '117040728745302189773', '101309028361444868427', '110363330456418921054', '100182559439523737305', '117388252776312694644', '106938519841593324674', '111847681338536748529', '113897594280127224121', '102034052532213921839', '114999153204626637344', '107585064260762461663', '107755971901486944402', '107117483540235115863', '102944610657154936062', '115080273675497813721', '102526588608543179608', '101335221024758008730', '101849747879612982297', '105138455137731648643', '112276589013569458330', '111887349136350560515', '105350495573144442379', '105727132127821749217', '112063946124358686266', '115037313319624350537', '109747793098916934740', '105887798538435693558', '115459243651688775505', '100487969343352743165', '101354187406071300822', '104557885419342982371', '107349307374942155906', '102579928162855977212', '104808196767244382094', '118047157436278848959', '115622466243011136115', '104896279899522511298', '106356964679457436995', '118391958784160529817', '111883881632877146615', '110004716237212403711', '104706762420578115324', '111000835266298743697', '118286066577375726426', '112961527663845879073', '106620873921373880165', '102159346922118307645', '108741250435676131889', '100612175927429294541', '108122951942314673896', '116424992718521920045', '109581870574956225297', '116910893460383906727', '106451049289581674337', '105393083628412021020', '107642724975085424064', '108264998570838621572', '115655034901162574758', '106914186897370535526', '103918544362469330603', '102311554030427331560', '115792812685025548090', '103510189176184025105', '111924926392072104223', '107899346809500297044', '101015473124516188989', '115403856867272859027', '112961607570158342254', '108652640482631482795', '105714039375338797059', '105481930047290102912', '117626213085054494709', '102060784065029072375', '109496402362800113489', '111924641708244560608', '115552999294763744109', '101540468776840533944', '113127438179392830442', '106869490400611014916', '116222833568410151476', '110590358677369779995', '106717946845088683921', '114783963660941257693', '114059577221483804357', '110638858118947494578', '112398515632347301349', '114956127731908159731', '102976465024742837897', '116381176537835440497', '117350989957881101918', '106439042524416914269', '112707583697711905956', '111193894818128580437', '113326499478607390840', '113097276181543898574', '110835860568874226483', '117319896746731581831', '103239655111676058756', '107776597198552698436', '109050107863846136002', '116531647672725843929', '105017513712037820155', '114716671631005124422', '102048265612444661933', '114891934677835796437', '101792420885438335154', '118075183072651168374', '114338217792003600242', '106100296973968329853', '108004465885047715848', '117826731803569547326', '103243072185732579499', '107781761552417614958', '112460361944526645003', '112770142454015377896', '110532983418913074480', '106478271434987235213', '110321775511217120259', '103460347843859150407', '116697908009504433191', '112586149667607531498', '107472474647563857708', '108084961215908246598', '114907254818162267650', '101467412948752406148', '117903011098040166012', '107149651579627195125', '101992164641802634774', '107968787521028284191', '106682831104422461380', '113247423264358423892', '110754163217982167702', '108002138812927763875', '117743699429239435303', '109809835379677001002', '111318157210459855372', '111480413428119678209', '114785135385262933560', '116063623328346676608', '104985017023946252339', '109167101392398799057', '110874778461943365830', '107469895927414342167', '100331338428465688037', '108967323530519754654', '103811986080200855963', '111128778940913280838', '107349300571630381772', '115512736218498769502', '114542752454519869265', '115695578304416858659', '111499908439497508351', '102583849990761016900', '117940797281312243002', '104478246706905872064', '103207773865797007066', '110394599356932147330', '115974650809850761094', '103716847685048716973', '112550116279721943627', '114310601130553067134', '111500053552799598950', '110923967234619920955', '101879656850551340719', '100732792168944455620', '101698568710409127237', '114745374612821245424', '100364844226863135021', '117037988566158662557', '102871830398264157687', '107858226132224039781', '108929403611931887447', '116481445670176776088', '106775609116257959283', '106979372492552141708', '110720576611232766643', '113698589973698283456', '111960527250858280267', '103386758086764797317', '107838676623404440847', '117749465598216140785', '109409183697005229195', '110593963566088558937', '111707273404757375952', '108048345204917994760', '100280501907498761662', '113878279269179440193', '113806314825655138485', '110760151623547085696', '114738075629051960079', '107918002962259107205', '111293271912099952469', '104484219049883711215', '115780865240170367976', '107164208673760588451', '108378060444638319597', '104774309513755344292', '118364566103966462104', '111656240650692979516', '108335647100304181721', '116145689779174805621', '104179323350489956912', '106855668231038715661', '100844400017051594747', '108346637271615594833', '115980322864066690488', '116889019895385244422', '100320175239277283592', '101436633503339641010', '107054398730220626019', '115565435780133582298', '114936764159343594557', '114840173700805743995', '115302451851587317396', '104801768486806000734', '112269533742014561750', '109809580267329149985', '114826457457941066820', '106737308305135313033', '104323674441008487802', '104244636287470350450', '112820512550939559523', '113475277239647026452', '110819164064004736471', '101069176603529970895', '107639853040559850965', '108742041188304602313', '115017401467423642930', '104281401034115714032', '102270894704382610216', '112974512141998019365', '115334822962809221692', '117804314976992722918', '102774783758711593873', '111540987882513803019', '103456272985377933748'}
Community 2: {'113371583041637564562', '117958141326540964871', '109345865429707844168', '105733948050774149627', '102855346468155011104', '107252020925742571252', '112915508949553064969', '101900299178799457829', '111594233816195949839', '112678186134740033778', '111359614762054487763', '109143384193766932670', '100129275726588145876', '117177689300294532641', '107625733670511152905', '107014679047964718793', '103658843494801858027', '108251836180044577657', '114134834346472219368', '114428401458138152037', '103118387326370701053', '101892269165398528426', '105846714412577435274', '109599602059332655780', '107161758471284783023', '104602860284118862026', '116935304621714844901', '107880310323937367562', '105795915952986758583', '112092488761167023855', '102042781028767247547', '108841235219509384213', '105771712753508502148', '101333593083741950617', '108853501738089315294', '117551356312534460354', '110232479818136355682', '106952974709619007593', '111803742341431288839', '117245054937343378617', '103592050042581381058', '114506169898055621778', '115558364175247828941', '106950551569609292145', '113047102292798770205', '108961465858012263140', '101052845941647002594', '101752320499567895627', '104910754841372191189', '101169269861152216375', '108034523839257798935', '103612871313139094390', '104896537673470410734', '107861942561128674596', '115020081348374234621', '103218677032751327334', '108320953284407783437', '106407963814165910213', '114604853277237932770', '104973761519912571719', '116665417191671711571', '108271537867006892813', '111161779241537203959', '102015465605153310048', '116444778202433288162', '107763787831388330329', '102524008019896509925', '107342445128902420647', '101872748485849744806', '101547242940587948399', '114077525644661833984', '104402168657874120678', '105545643950342933917', '116001483635760411184', '103453522098470167898', '116656988837287701584', '108855771322927272374', '112039022986516057445', '102219475968800204884', '112692588964715544561', '106037630578126019323', '105211586591247456032', '108500909069434150838', '102626129336565123728', '108056398297424061653', '108091327114614335688', '105291054385478560327', '104364710985043058656', '110097167949323324728', '104219386206797402856', '102182930858704117459', '100712897463075952326', '110544037180447481256', '101387416106272465082', '103212167104566683799', '106378908153930162657', '113069090773132071782', '106213073640688349292', '106086121009771648314', '103964631411625176893', '115702306533209355625', '115800475809612886515', '101683039849030383098', '100125012078853567494', '111771137426879353123', '108384201920217141722', '112267968031995007637', '112770918706467783925', '107332232527606860180', '110347380425323822802', '111820616155057958566', '105544094887697736623', '113284787225540728296', '108365603965195825133', '116422235088926068596', '113624976773517854391', '111895635103211133148', '100973338013746275174', '107765155354887834405', '107640279749845902491', '108314259245584185142', '101334522477708381797', '110240143550654748022', '113793834901438087868', '118398918573738329809', '105054213068859335786', '106036588985851683922', '114579585661410116649', '104570540770975204467', '115710735637044108808', '100348624348633155177', '113155527440624783304', '116022877845011670830', '102615863344410467759', '105859070951290270749', '110788689115113965536', '104150339468674665683', '109641290533350643200', '113091915797271271432', '112069484480728694214', '105508666909703535708', '107486040352841565387', '114776957810329544997', '107691344676291850790', '113544226688149802325', '111455687366448679827', '112727095754736043075', '103234640511806627598', '106738570823745562395', '114489004800393445666', '113420422244530728570', '104116284520950538276', '102001774674190160714', '107123495558946167391', '114345903275605514915', '116163754096446458259', '110899709105002539146', '110002405786613212411', '112565301103246592411', '104973955808569087862', '112587886257842125974', '108170660147125161946', '109443407918560334714', '110938159137165455276', '109998599748459946319', '108204520910031019882', '108825437933998119624', '106660876363786203340', '101817213052779787512', '118112346708818508960', '112073635601345120001', '106677933862286361195', '103614891582957065589', '114620353253724833655', '104779536907616851652', '105198124856956810263', '114520811053457424775', '103401721150779001531', '114610751804622117115', '109525300902232636271', '114438953892879387897', '107192195569453684660', '107195441476577339421', '113876014261852640553', '116819601264686093434', '108551811075711499995', '105473622219622697310', '112495985656081238946', '111045659538457768080', '103958441795544241153', '114474252347218597235', '113615004883076235547', '116046131107486389598', '113186623583029971455', '109258622984321091629', '106283213567347147087', '106001808066334889083', '116137317231363696563', '117284347749726423159', '115942789003376887598', '116234824425478706959', '106755489263544557975', '106922749586772073195', '112391268677800082202', '106808688302434879780', '113413631123566181546', '116166660014087779586', '112256055486601557357', '111058843129764709244', '108108273511881005173', '116302527527023675412', '104935083683790276734', '104533077532962855796', '114159686106227869859', '101362426382980843956', '101213330446618923166', '115471815788264818704', '113362876113342509957', '109440206780255757543', '108324852458814017913', '117958363368979774542', '118339435114597706361', '109111565800804120845', '102271197621662020659', '117459616341752158383', '106851256198255577581', '105841645449323318101', '114046998698228319586', '102315706662673946809', '114279510179117392107', '113506158551051150184', '109547422004385073269', '115181052736294416606', '105167657448375010036', '105888615414982242080', '116031612186591874612', '106600684472256985541', '105829430087702071981', '101015964088772576261', '103484147548147545515', '100348592160463701156', '110454253627715621789', '117310042965407401917', '116354326277822099288', '100974258168375166691', '117050822080606227766', '116973390574320264137', '116654096266355501130', '103037366582313115962', '105470844763554977589', '115970504272079730559', '109590423597896078382', '107291158434082397409', '107677895455342575962', '115913129409035093824', '111920649327427068114', '110514503441802354869', '100000772955143706751', '101829990343558867698', '112215965139311871199', '100651621769656849775', '116315263914636045740', '114502453271491930341', '114627710794093635117', '101434281784417430781', '117185877001714843452', '109789939743085010576', '109406071805900331397', '102652087346651833378', '116032490611047283168', '101482635367518865545', '110962949352937565678', '114096099683887759200', '104956293623550863730', '115467927011694256253', '102813354404079649216', '110700994347677244209', '110245751704905428576', '103971567945419161374', '117035127849644218115', '108112557629934458248', '102420421725069396072', '112140832256259280260', '106265316827872063604', '113255240335204167235', '110906874090916136949', '103090889232468301451', '109210006696205769848', '100053156799226426066', '100528843579371775272', '102407652944250345399', '113881433443048137993', '108120862026117179493', '118055372303098301843', '118301801570268856235', '107720718922832943625', '103333429938529668020', '101222125576635425546', '109855467528220475231', '113211392356513293746', '109410878385939067590', '103773811230107801448', '117663015413546257905', '105076569159070683815', '107226275692313566931', '110897184785831382163', '102128138296891622543', '114291965269165524866', '110865239138634754687', '106919440800476787564', '113884566566424587799', '108234532142683217999', '101995515294265378007', '112139555141728231689', '103186550328868019697', '107318169263608653171', '110735228167430300745', '103984595971776502972', '102082383403038732632', '111091888059245904060', '108952536790629690817', '117283174365630308265', '105553376651483010616', '108199520188010077463', '115017188374689068228', '111425389710625097093', '111056444123779199997', '103949261056887216874', '100599778127538523049', '100411393388776865339', '101010880213993219787', '101336441946387245415', '105474544524715065767', '109200333648813090613', '104431173322552031662', '107043559343300052605', '115850015072126033610', '113877972545027162214', '102511981912191370608', '118444997653815563095', '101373193613128995135', '113922681403146970349', '113602098789392301953', '111267716732125387127', '106497827053008591535', '117257256457124846325', '111688710840393224386', '100316335837675973507', '113913583772851182259', '114935879585996359700', '113495232224735828648', '102221942940843100503', '113242351531747014239', '115524111646752962689', '110823652171439094038', '109070580143675497850', '107857391213951731603', '100264010813126229552', '106047806004039942285', '115572179929649580650', '108490791507069410168', '111048918866742956374', '114919915226752492773', '105216491640488683417', '105390485883966445268', '114963335823650717178', '113234126401294172677', '117344786984788205452', '102172471534334518172', '102774550708079525885', '104637347385347586768', '100623276740673202144', '112353210404102902472', '113166718268343560861', '117108447922509773781', '114301543638305041274', '101618542314456546606', '107935490847186075336', '101041393667288046408', '102228255686699548802', '110809308822849680310', '106049828009478130206', '102598717561259337811', '110399185565600323230', '116261692325842255895', '103765013042311928518', '116953670423531956122', '103599283279782477391', '101629211371073711149', '101109783989792704485', '113218590431249449552', '104857406109954440836', '107446552448005649461', '105139201027215244053', '107323726887023845557', '115686712405727979216', '107736922941118705751', '105163107119743094340', '111624531888169171475', '117665679955956440091', '108208027022579038018', '103839604733587411268', '105090097813727726765', '104328553869453938019', '112384233249429038897', '100601380617286837373', '109351399938437494273', '114468593663912084118', '118128056832266970446', '110456453592220725136', '100513462022843893224', '113271433504869081420', '111600785001080066837', '111258992634637082336', '109201681846030076792', '116214152295449083654', '107096716333816995401', '113015718416261368227', '110877363259509543172', '111326252849459841758', '116594877350823996927', '103399997814775349105', '109907447383307087458', '110439359427525716603', '109066739735765388979', '116935358560979346551', '102618047349606277909', '101894863857022256081', '116640923223897011110', '104401121686781166984', '107836144820386436507', '106126261940932820514', '117891208395394989624', '112547381334151121538', '105445338044186927815', '117764940156284555195', '109145652162309851154', '104577357381178665210', '109262910922758121820', '106176762220398854458', '100447532306249738876', '101567686389173421706', '114526858225941972230', '107575643622100616527', '115694366049123743715', '110221548312889137523', '114220853146751120080', '113444937979267174497', '113457471429583444041', '118133406527550382736', '110067835153954222370', '115858612877723984178', '108404515213153345305', '109960739367065180670', '105713497706843136406', '115450369001355623660', '103760237079742609335', '108179368929243141515', '102549623343643093965', '114899296263371865648', '100227436861049512391', '114810779645279671611', '115366624923467413091', '102556961352393259945', '101777016929613982157', '107590093667978669374', '113067760031784364231', '107707592416977920764', '108176814619778619437', '100295373702562394797', '114618043230336563405', '104286363725914412325', '107982618909749811163', '115223094186537734509', '115080066552092609337', '100800158387559935498', '116954710049425703954', '111051039748078110427', '116924321492365561600', '100521671383026672718', '117201667676179079189', '117197505764492438174', '102648429021828386272', '101157854606139706613', '100373662920202449083', '107940613488592745009', '115664435152899158263', '105421360534824524100', '104896478495888175813', '107098810014635698204', '109667384864782087641', '108855200241623204226', '103951826558502729102', '109116438871355814958', '115031545528816193813', '103778755977163571576', '109536929126322188570', '111003533336553674230', '114737172548119622808', '103857459148999991693', '106133647632447653039', '104706828888809003618', '107290790893215879513', '110038350445855508357', '108124615011125146324', '116806352365658350717', '109540736337507381415', '114848435876861502546', '116563127088683051053', '100100614753096661746', '107666763867025993454', '111487073622309890442', '117596712775912423303', '109835770814261102857', '110223848274191751822', '108270712126515524163', '112754494243408214081', '110260287957023636542', '102097892256472472261', '113899310637703974412', '104840249659865132742', '109794669788083578017', '104433101225760614537', '117665613028757061169', '115121555137256496805', '104672614700283598130', '117134788479394921938', '108588076582379537686', '107444953832494307031', '111356467277136681657', '105343512238569231143', '110106586947414476573', '102874090242813007451', '104895218134854838516', '117800110659124563147', '113020456268567114431', '103579304160477212496', '102341992037398887685', '106220600090297128338', '102604554618567108175', '116848436511235870425', '111759924371065234455', '111510419822971040815', '106416594206743737486', '116413323316530767376', '114162698572145803131', '112048070794252585618', '114245534338887342709', '117617586575932234675', '109709900240523274422', '109017328710054242431', '105000875740568674706', '109817489744930804252', '104095212999325601474', '111695056247795680420', '116326924089461824021', '107991184034868817056', '102434361803738786793', '106772544387169323774', '108673786817313474516', '115825648832635471354', '106909780620672931572', '110183897431869053927', '117059593834355077199', '116931379084245069738', '114607043207014058571', '101964374013548035479', '116010686988761119371', '101441913939865423456', '104424338679069151673', '117681241555382421104', '104356957682366570813', '105228937789154416960', '114334109274969436200', '101038104764033734752', '106898753996583382613', '113493854651753327245', '104345801144381868824', '115002587825504375275', '101221104868305787960', '116611775502344633870', '108719090649071657338', '106944536119733342041', '113832283719497374351', '117763327806165990792', '102102223756314820419', '100212953676424405273', '103150328351925153314', '106649929935339369458', '104817077837539787084', '101020620594555471899', '112740165303235183270', '100333543044473222310', '105073221672682346129', '104746194745229948923', '103481296262748501311', '116342937492510737097', '104119608064940163872', '105574566053602019710', '102372690636453052676', '115053287304424638334', '102354758076984012200', '118318457153385828916', '105903603302602842440', '114522811866073303399', '115868784569078797995', '102706615299055976974', '111305684135920547860', '109601534018793668119', '104128976029972436170', '113729277367184919773', '107195785390523141157', '110292076036271913623', '113863365761872463503', '115807723984369772514', '102648694645821132427', '101765416973555767821', '114913678807034845120', '110972318601650054660', '114666771790832924031', '113873289443253295484', '107665939201638457855', '102370347732140106252', '104317168426965250046', '111715652745890944101', '111731578349856195951', '112509132460368995491', '109397804382663028308', '109701857897609747907', '110586200244894111173', '111991738421750230329', '105874831115955137298', '107683035649711357814', '110497909365801371707', '108152252385291870699', '100512649718649402368', '116111464053134606507', '108033040045314081727', '106448934307511106762', '102498481444985188022', '105306493874979475298', '103402479546048330916', '102112547999724653544', '101393405907846203046', '104458755807282024750', '118383007039633421667', '100367144709105316901', '103729796369040294581', '107909926350520444591', '113815496175227038563', '104441415299714065572', '117057485620041731539', '113383623452399451554', '113797508378819391794', '111003376540003743015', '104028329852681318179', '105496065140915063217', '116076186919541013139', '107156755577155979497', '100037428816683405361', '109043804130056015419', '116267384604818495277', '116220525110856958463', '109554001864498151736', '107358865307002159479', '117680872003014443769', '102533732658641069172', '101847215225386456629', '117328732331103841331', '117553368300608550188', '104987355197229091786', '106166623138751182431', '106551265799367505827', '118147897097670149361', '103739686836221835119', '117555990096315491864', '108948091050753023808', '108969895929492148102', '106233689102051378781', '108285296632855004171', '113050552739034043404', '112145951608161981842', '107538503004482952974', '115516333681138986628', '118265897954929480050', '116283682241733912188', '100948164131944782568', '103436150731639349099', '103029870795404358045', '114122960748905067938', '104487223275138277820', '112761831923510245085', '109471580126932348184', '115884897721735446510', '104683587911483636596', '111385154527879695329', '110738178351405818606', '115995105609774588517', '101174714442258565659', '105704128932845103537', '102482951505328809974', '112727226361732924638', '106199115696314194214', '114326903094745477264', '110818385850684816555', '112859244767729828637', '108549873871553806005', '110332997758570434991', '104312101745348855122', '114813729942739673295', '103030116155431184588', '102931053150981398407', '112383603401225821531', '101989171644896834606', '101030696951976805353', '111802118519275235212', '107538622122068192565', '114352415294077760776', '102768089788642886186', '110100468009673900593', '102703843269744633088', '109191289222453878220', '113756014567052941747', '111660593383620270113', '105568760052131786383', '113718269858549593079', '108686021205441482363', '108042439329828231395', '111338386557930415830', '100837000892259926129', '109036978092446954908', '109274100203453941474', '113565031517839416248', '117720626238470886461', '101423092138897438495', '106419400577988151299', '108549385320967837769', '104934675720274942789', '114197728097920268135', '101059133757139216178', '107151624355255036787', '117157652853209325392', '112829005077127347210', '104474974874825905514', '117498240250974777210', '112216705550566244316', '106351386231433168228', '109216934655960242235', '115143221847216992108', '106990869661427548133', '106325913218757169450', '110023904208758175742', '112188647432305746617', '109519561451988889732', '103036608814734002706', '117489719308961334987', '116792953962445337353', '109602109099036550366', '110556770558668306524', '117196140454784719601', '100972460481761964036', '100399505507724877701', '115891230387484725858', '112374836634096795698', '104031371678041576333', '116337470434095717442', '115017840964219023171', '118239708588385194858', '109080723668547114837', '107037094585719618567', '114324572122696049251', '100500197140377336562', '108807575261328575617', '116805285176805120365', '116992234810067730471', '118297780429110098708', '100953956596979468099', '103530124477517514986', '108184680170983554128', '101625160056474857859', '108048325630653551776', '109342148209917802565', '116001753194413172608', '105507095357499885933', '103457509627275821069', '108400276125913558601', '102904128915733925934', '112110858722565266390', '111758470838288232643', '111991876596496628445', '115567908511609122376', '114151454762980012752', '106382433884876652170', '106202342569754356867', '118120364585932387777', '118011560178264222649', '104056902186844323075', '110111510059204475260', '107264515902167457136', '100584443531788315896', '100150638677610462889', '108139015191701664219', '116464344073545994074', '118146622799388835070', '115574618126479084852', '115245252825542472380', '100021025784352405813', '118430652804288725875', '110791260170772171960', '103101121348859087349', '101872015774361781592', '109355026197632524528', '114809488257853535663', '101315466131734709053', '105521250161974337983', '116159046437755551208', '100327603635717936220', '104274435572172788174', '102943220293105257440', '110349870358750524093', '106168900754103197479', '105017289267741004914', '115723497250720724489', '106921557023933875458', '103751121072531447024', '100498072915667518572', '114055975301837030490', '106741498044249155577', '107236664740300085612', '110807450838457795241', '101446950128598043868', '117296255407633884056', '102218502614021519543', '114318197127028344684', '110487906130071423133', '111770459801993602257', '105292315290754691973', '114514155722976658302', '112974446717580477987', '102492240008005301473', '108998673146368660257', '104583162486794389928', '116426856572060857037', '106812353891907639293', '111023773669087114764', '117191685872961346682', '112026139541760362193', '105758948654365186665', '111952642093556825738', '114516047414042281846', '110513304172301520239', '116375325352702759007', '103072738433357468653', '117953399333548698882', '101465854435804471513', '103068825327398983563', '104174037294742207726', '100279438294886290330', '106726317072433225723', '106306945062511966344', '109509160915387426842', '109312524819436138822', '118130821798863756144', '113115642206299816868', '103258880630136693404', '114687971156212828314', '117464410931711414271', '101539817178768822220', '112246941389479622430', '101269616518480136760', '101201530462820975291', '106168143967919169119', '117149101099765677901', '114831291174925522786', '109710318485682657052', '104253774537638039236', '112188554294623468892', '110273540218887172071', '101946159124570139670', '110628189878519037339', '100383354900992852307', '113210096909000624337', '108557531309397355660', '101236858846615839139', '109197342027504996320', '116113014152499702246', '107200121064812799857', '110581693083408452344', '108871877301789098084', '115111485112027405250', '118114557675104381720', '110464200573564226043', '117733415952407247601', '110270452137613886258', '101361958523745596104', '118386958833323095147', '107697270156490152958', '117893862702691605455', '113165622704612371637', '102917274719634969815', '110442590930631703783', '108541235642523883716', '113531415437983740096', '113234958408070147943', '112118444744999958775', '106795916614100659420', '112254467169147545881', '108227564341535363126', '100029155361912085711', '113699157481810180959', '113335509872825000294'}
Community 3: {'112001884616906920968', '104779050017621240187', '110916172139070445434', '113229708870459939638', '108489782256316824947', '112352920206354603958', '100926514955258894114', '107248505013240008617', '115725121820155968737', '116491296880840240999', '114154802770872400845', '118111103620028669433', '110941646061630254249', '109195084657562097021', '106724181552911298818', '102694915234812880288', '106350323767678955015', '111065448935028737731', '116856837868433844821', '109545155248665884380', '117143431026798289437', '104620294795688848166', '108900041146352372479', '112587601997064227832', '116380371543033644432', '113483602847882541017', '111433084780228146256', '109861075689715799208', '111301797862442979299', '107765982819966833796', '111749472457857204443', '113958778302770203355', '108216446375195032439', '103279136359927504059', '102794100310829922320', '102963115697857362144', '117809104859242596150', '104662915481057463101', '111849594165275161567', '108922099576947150137', '108769630318994384868', '107850819517675824883', '117766847676764421811', '112077428110609373971', '111161311037034162072', '105310358762146417461', '111546406511895912221', '103265106089782691100', '113128418616070583810', '114215116699336207761', '102866374879636890257', '101264060152105540821', '110933278795835298751', '102440060319902962321', '113828893397923062003', '104222388166951734518', '107241699051634529813', '111186136283899588892', '102518611287994331062', '104433788093534994632', '114301429756908162253', '100534554627821741402', '109973231351055586921', '105143467677751524429', '106696988866222513951', '114285818583232177513', '116182814794592548256', '102257491365313220038', '106486775986649409200', '107144691498777246190', '108502225857363221964', '113088081630607178966', '114746423198341107133', '113624140753846693622', '116009834462330022542', '113994393576812492200', '105579050571007866127', '100745882504324675599', '113040526569114848835', '105021302604134143708', '108488226776866317421', '113977364210913717643', '108461327303712398352', '104005436274006934209', '115875056630236947522', '115243374378908071582', '101084828922931640093', '117985690175147799848', '116744824184754173801', '104845879428257102312', '114555916998675402605', '110082969610083648099', '102936702821541748289', '102078805644992315548', '118411795292122095996', '116742532106949670638', '116902029970481129903', '108989348230672385725', '110137925117052069462', '103718268098339258177', '103511435932730435338', '105249193782933942509', '103103984407601632410', '114891588550247424886', '101358175942934820653', '111972311379491101006', '103756699997445841099', '116579818487316777944', '115507658258745024139', '112343206828629093648', '103509578543673522965', '101241690164534343585', '103681118936608513069', '106417272005025816536', '111775457589352587958', '117532642464991556961', '107731541540692856230', '110446129519984863552', '111033390960418194845', '103845215957978658169', '117405442573896071122', '114390550216105234168', '100173984776930409466', '115445917559384249653', '113165008219194227908', '113744311938317695281', '105742648384251144046', '112777591609293686046', '117055184603829134113', '115657968306117193542', '117013857798055475248', '105381428304152277288', '116014719767403333357', '100161902955800921734', '109327070189211627981', '108038272385419338752', '101358364394778249572', '104541224270908052861', '101573046878061458576', '101262147826811866992', '105160200838138220399', '113382997044179309254', '112341454817934409806', '101788496623164057753', '104214207195288873338', '110469672152407577945', '100077470889543654027', '107096651698842556716', '110503289666259339350', '100215134748283905518', '107524330930689109660', '107022043737812203856', '114633760443711142728', '114346447558296740053', '103974811516423362524', '106172891607376495769', '108834722282274513067', '106646613415174076414', '114947450120852218336', '117754310651579298630', '102950638763835934904', '102510046278552618466', '109930059896925903578', '108803307096248466305', '110591699614879778324', '100002467422536674298', '116833075408381870999', '103996649879809404130', '108567689735606951896', '102923849779059300749', '108045288045678369378', '117076428131180470547', '107486432974823114072', '103469757558881322403', '112830321932183201963', '113470300413616898265', '114418511580407266751', '102134577098585163486', '106115562769241282579', '105960823811455236614', '101713678236322366566', '117897287589455462356', '118073307930540128656', '116552457482293725155', '115944545341635737705', '100831688518255968952', '111604002918642556358', '110272002170841143606', '105296952766228862319', '100660314160492534004', '116727710750098501093', '110058822708204114227', '116002318472591276195', '117949269883022892027', '100030871492961093609', '106995193536351363059', '109258302185659233880', '118061517125445625665', '112263191641683792624', '109004032030386621615', '104691866412774356301', '117700783322524735280', '117148425902448519769', '114976982266715324992', '114816517626314641597', '109738914192820506748', '101164406302154304044', '102101390092819267466', '111045500143120127028', '104285897677455868452', '109366012906506147028', '115071850392951753074', '117962955435679520231', '116669670868025314110', '103329177407710076379', '106719114779170693864', '100522349585326972330', '113701656582092091932', '103645950829040552823', '107321497641298660539', '107239257508457563406', '114093519283503779070', '111268061724356638749', '101361460709475238752', '107294465895827838777', '102617469658469176357', '112552813635819408022', '103993063758755013675', '101050151967795968458', '111382229795829034393', '107133704115903255705', '104089034994416821424', '101882768961867481345', '107712570625733553061', '108685695162444600036', '100316159646907532060', '104123757262022137956', '114767573600298391691', '117357811281670421632', '104854938798902396029', '115921339576457321008', '105260292673030575410', '118385809991315594044', '112577358901710936187', '102072810210969527925', '109828102480855113119', '111128623900102015619', '104593453435342176514', '115770951264801173365', '111156760961570675695', '102871042491478262425', '101979350458290818225', '118147745959534589148', '117201017011104654079', '114122825857558799579', '102924239610362339697', '109049503516554757919', '110596807963920871497', '108260867303192137682', '106225029442928747010', '115929696989471241852', '113910193843982934324', '103664212525460222242', '113359323653658147878', '102667713914216298332', '110597524380491838885', '112351678580818082302', '112172895831966524738', '107956143651889042109', '115350460866765506834', '105432979600625131139', '100026359533941345652', '103666717035537082769', '104680355605374576099', '107333938915466411479', '113415704111916162039', '114031901825785676052', '104268799715475485028', '107846797878331550642', '100691844643900781493', '101443906081741206545', '108519869273885550566', '118011991503212870680', '103619676831927903436', '107896329045480874084', '104964739864501980663', '100670484314738438894', '116364258703687964378', '115162316394728481928', '117834821533453831511', '114078175317174911595', '116622036314375376663', '115730873667616504257', '115369062315673853712', '109868891819964137909', '116542215845105155240', '117360302167972092625', '108505000913531193057', '107986369402938618592', '102237768047642940069', '114523506129833534387', '106260680000472099431', '103932234589686854856', '106493824041755357794', '103916065684505341014', '110387722700507165008', '100987528035954403054', '103623163172113566856', '100028295288839431307', '112338415700457054788', '103826347841829567457', '102210132714553880800', '101504344861739725527', '105568863938286488542', '113635133638533356529', '101507524535361905074', '113601769879623116416', '104807707676075308449', '110994682354133624771', '114307148793535958935', '112622895642244780995', '112214052651572698339', '114368336064394103265', '107812329759642686553', '103169623511134110576', '105896421463864720909', '116477963559580194281', '117101264833769405454', '109430962613611457971', '101165252554359020469', '102663373499479307034', '109038049047382782928', '106900270784775640045', '105977059021656575692', '100698354120795409757', '117821058998625758091', '104940069930050493314', '107141925886226097162', '103849358664685526273', '107799495182619326520', '116582231268051415167', '109242985875062569924', '103782559850994595764', '104624062210344408055', '102754667971286358855', '111072241480417627191', '112642281531970605760', '112896695747830723277', '106752997767195465691', '102210954195157549668', '102104088863747211510', '110180265367241529068', '105671356958158145096', '108812024577289729204', '100795706981581168931', '105519431181175202669', '112272059940734255216', '105015848464714687944', '114432729065423199499', '105055498200701552974', '104765061290134755279', '111627171432201206166', '105499473744493063584', '110175954809161234852', '113856438227022836530', '107957950611479180202', '114894585822709505887', '109088289266267495730', '112585397479724226089', '106905568207604331790', '101854866650604074712', '100232356803398062006', '104126189437451572845', '112330282393483241719', '108021265229142022479', '115081025762845243709', '110784476753371706018', '113889052576259143956', '118216056303749770000', '104557430687308297637', '113870471228640195232', '110969884280166542382', '114134176456190945662', '118341449447041425311', '108235418230263523321', '116493443619197045903', '104099585141443766730', '103435622675388574604', '104551909694290446907', '102766043024060854848', '111117743232778422510', '112886466569785749516', '114428996144946863068', '100361991915065512280', '112183434666915080684', '114459404510062775387', '110339042070803922041', '104084580114902940847', '105195738178515130727', '111344290458139644417', '101638475309200358060', '107230915964476437414', '117537827661455365737', '110119416106928738163', '108374549257242605746', '110780021072036141959', '116733747380454782293', '107791692369725820367', '117404944027476880503', '103532978917021870793', '108741649565769493192', '113641193257166851475', '110992079327865803047', '102506471328190945789', '114225095150930556305', '103796613888701519809', '105405650077092541765', '103339613249971564653', '109277184928783877242', '109873891604415873760', '117679735640811535450', '103570207785596082693', '108337926854097616902', '104012880980885253611', '115266398879329835287', '117819578875809069420', '117918396066749084662', '102375763033246730310', '108980817105471117112', '106917992932604254829', '111297024635183765561', '114892187428023648006', '111861941460223266455', '106662772777538286507', '107695556227377480345', '105953313079140851418', '118337867942493254282', '104717278529004297291', '116537002393856503777', '116388270997626176514', '111884043896744048382', '108704161531739279499', '114328394310023796117', '111951252635826918440', '110937404525422912753', '105319384426213649881', '107789534877302771172', '101501440971778698388', '116879360816506815782', '110165569428362930540', '103886461700625399726', '118224560930167962456', '105930290449828134051', '107169757525950006290', '114143734049559210243', '113236065555136174088', '113685046924164727952', '107534130400375529292', '109726816422075121059', '110453954461222492703', '104183633860868026585', '113406459247430084745', '103395772177679913612', '115181907980998131003', '107231971711245220938', '114161520098560302710', '106582900896228047489', '117670751990700012944', '101167884984286375872', '114472244110819436291', '100247606365573973203', '110137787190941741638', '114194930674721671394', '108406510484787527668', '111392535756028664837', '109264442378219224949', '111136091696107355219', '112289970287643854347', '118129390091654416386', '108055290720828137760', '108425829201534805000', '108167771045481769813', '107206847604637310276', '102142981140312130369', '104478686257866494183', '110943742415003217841', '100158528827446960868', '101705571660400786185', '112453007571345405216', '105385572248701977836', '116418099503461715611', '102228007694390391786', '114411551202359488300', '113469346314204153812', '104424203732843568831', '105963804556453504833', '113740187751359218701', '112433233162542061134', '108497111127565735485', '106610279669425980591', '104369383816265494249', '107424947153029909722', '105229868845836444265', '116374015391289041972', '114767325666629090998', '103749687729091390798', '110344391526757887983', '105598223907339480049', '111586062790787959834', '100536923982089452631', '110458988485796966602', '111771474205334502996', '114546118891642771504', '107210172078391344400', '105094419630725833166', '106666376321193731932', '105329519015812895257', '106755839826743582365', '104443397577405465831', '110401100755377253052', '112367647049195422262', '105930925314029630136', '116348178314943086262', '107929474016099416764', '115920388737284036613', '113061385965191773973', '108309181103830844981', '110706438380690855170', '108109213541390537980', '106185836270391214835', '100655594201824378607', '100215717611888745833', '103817243426778392420', '100939858959979531859', '102480742334782148886', '107024557211108772208', '113485799458300181051', '105875605383997682417', '110474141982885416408', '106071908591161533619', '102963227709962685689', '118440091710320683285', '108201437056228433477', '114561154689497246079', '100504314850003283213'}
Community 4: {'115511987799237171733', '113250691524784561414', '100605864222557374608', '104112700502285331526', '104969644294937516031', '102418378960391648592', '104558996796696834366', '104770776614693816879', '113158814439512755352', '104147423939963122526', '100621204114976031079', '109742804342446573548', '105754002562827402350', '104392842026507204042', '107401572991508607847', '105248484118148978714', '103245041057625130355', '102301925235690691403', '115924865466302265389', '107958711860940415885', '105246828264278441318', '101396087935203987162', '104867148520425189911', '114025996339678208608', '115120856388820348736', '107550335129662216109', '115961021629090154025', '104962347070667053810', '114703714445331612880', '103011191893676285908', '118220857055764418224', '106304164904054835645', '103486150650858067282', '101145980349117737014', '113211954743892121925', '106683452755606331265', '102485721261724622399', '117728611187295597769', '110176736180899547326', '102518365620075109973', '104744726224419902744', '117880813751228693103', '107489144252174167638', '115586898390417250687', '108710095010646545899', '104762925488648743919', '100989405473280437703', '113472184832544483745', '112369916221417513808', '108128002074823934634', '102103362080150690922', '113312804462990112705', '114634469290344215480', '118437692255524789161', '114124121045669648448', '112632260187323187916', '116602440485633829540', '106096361729029699575', '107800601648398385670', '104935478024576728989', '118026639398463272784', '115428993145818153559', '106073502505833617615', '116307911956851384448', '100915540970866628562', '107105348072959327741', '113747573475079649125', '109667890964357276732', '108527329601014444443', '108909492433674629621', '114611629365777822843', '111557988109638065224', '115409439975765947523', '108805430409141907975', '113537711651274258466', '102377882249382281108', '113409086302056667844', '107101208158314368393', '103885278007648446386', '102213934827347582736', '116799045993451756042', '108810436047733672462', '117125550255177987857', '113102179663329232861', '111163557023441462482', '116339430670263519533', '110598861844392285549', '105072305864951447999', '107379680601055044776', '103103834116993607848', '101103242784230519197', '106075926887576280408', '100733334063966339322', '109876915588291208505', '107902791674095682080', '114195458404542931606', '103292125454809728917', '113686253941057080055', '100048100630151349283', '118288123059186294648', '108901237855028365685', '102476152658204495450', '108542426628002931624', '103911607910068922429', '116558562366390541447', '111584384391407513657', '116761784986758593534', '115105647022907007398', '102400354088060921866', '101012074427509537656', '115111094068718754134', '106289562822644692555', '102409541521880756024', '106264880718777779181', '100570943621691880802', '101426379407929104607', '113249114393065213870', '118079092041447950546', '108273660324649677046', '114789052294324286806', '113367609333589754250', '101595233284055239142', '108729164162563480433', '108099300904077351421', '107308430964327858950', '104042965789095032304', '118301727363923491343', '115530776534617554663', '103850326109556474629', '102029505169101002492', '118036378782834084572', '102645532385014073041', '102087193593331908779', '104102743248207705784', '111065108889012087599', '113625462103500841369', '116334827514261561554', '106038153676060815898', '117345174540134167439', '106133480923323663427', '100379345990767507644', '101965232098049360563', '104501652823299914159', '108721466183079531495', '111962077049890418486', '107004843925454095805', '112932480074118093875', '103483946223213592002', '116944634206258122974', '113464569897311842405', '109892778117736265351', '112960723772418803264', '109660946159817383241', '101962829696981365403', '117534567438781655786', '108439032486286528947', '103423025783649000949', '101081302875324360817', '112317819390625199896', '113455290791279442483', '104635208492390994067', '109959354295627734270', '100879115281181648565', '102914580922828464008', '107775404050846237250', '100580057424662460288', '113031968610080900456', '103102581616407808980', '118108325814003963743', '104763480255337902487', '104244566720530687874', '106027609527831583580', '102024983110480854484', '109549484898750371360', '101358589654375245794', '109904616233131659643', '105945403054619746508', '103776299476527190352', '102383418437695456740', '100121444682130041890', '102528718122061029071', '103226907226789753873', '105552751194150069971', '108901599657368504920', '117937415022745482256', '106369182367169177791', '111887149774661795025', '111895201268622692277', '110109050164240978800', '102014703153353451681', '104380036950579300637', '103640868363269754000', '103274398541354707265', '106983800549406471589', '107362628080904735459', '109489575895255638957', '103009042022920905686', '111076127406109584342', '118029848541356213863', '117386232350873428301', '108541332650490652167', '110317977449311219936', '109458589098107737736', '109397461154116413309', '114247253917905334162', '111538684930665702515', '117843617175570491498', '115653522232867695783', '117802718819084454042', '103473863573453096651', '100003761748305295041', '112380861379242468878', '104081052260915687825', '113751283404152316115', '116707419903535483593', '116119893029262153595', '109556244641607065276', '108093196978439295882', '110570190335649752012', '104838252503679069603', '113184091727451211493', '112471890387110967375', '100715328241636136414', '109331277868417982438', '118197341263476239819', '111213696402662884531', '103604701661729541349', '107030790742542476772', '111263411122757438264', '103503116383846951534', '108470782772821648496', '113027287369712034675', '107148487955439180907', '114823329938030546555', '100918044514429497479', '107825480915810491568', '118107045405823607895', '106539835304510344813', '100318284953757812785', '103667678270324179713', '101348397943983026449', '101435445820764233826', '105698746106719950321', '117513232055994920961', '117302873158452325530', '101428086335852185675', '103892513613850678007', '104129971305612636060', '113141491911286106535', '104486088524980775787', '108138142849003408899', '108464819424870648074', '109711721158856077787', '104019628676287434335', '106036766228893218678', '104045511944341391917', '100646334382638139241', '103934664522705151349', '117599181480696978620', '110200115381518276083', '117657888417980998852', '116040565882702717981', '106639970019480364599', '107475835798405892541', '100845686758241484821', '107462515199897328861', '117919852642990147224', '108770653757133854006', '100458658122301138710', '116077052144599127950', '111349868439224262161', '110147760988040975002', '103449995781766635357', '112447253390876285565', '113339552992922631802', '107108629296744262885', '114536133164105123829', '114334774162710172597', '101484020753179036782', '106621934320235917617', '101155443773705571285', '107754205740456364800', '109117683049682245427', '111493894867434654804', '107174603951133855584', '114034900216037711293', '103098855986676641514', '113900138806012194956', '114969675270324680172', '105426307125970041077', '100936611936552412031', '111831478459732211063', '102227359845636175866', '110592217550794732321', '103100179087770804839', '105173978068939050475', '110539629556793511406', '108360574989017497426', '107784212140893392732', '101793532287583914396', '107742567767125793693', '107639567933788693074', '103977761514480488970', '105618471069714101780', '114489504825638353488', '100132612879660965860', '116678377243407600427', '109031486518632696635', '117951052831974893962', '108855274112594118541', '103855721758679327070', '110258598415939907971', '108705174211639807508', '106930820875100875937', '108218933035613051336', '114585365564249361309', '107112192270189573201', '115774797671804302541', '105284909171916066479', '113400351102255476238', '110492963926129353210', '101326473558851266458', '106287665062204946341', '110926109570235923399', '112401605196934673030', '104602423740417750584', '104644705068936006621', '104877931759093166358', '107495277214296427779', '114504022490238986254', '109412400081371783885', '111673151624151424655', '102503573464210184147', '101114516910832196188', '102958145054444947691', '116594199576805510790', '117178975214870026107', '110945896776944314708', '105013324302057228724', '104833564316573420990', '108940614072693028374', '105785197801929483800', '100245173607132167999', '103384762815820358744', '106846340899002453404', '102373191596205712937', '107483714191607682955', '103537153144510961548', '112541074199410704452', '110889597904569758528', '113756723130417023993', '103519655975029093996', '103761326311610249621', '103997551385961498986', '112878918236054024365', '106501988136092543170', '100584544075742338361', '104690520406213149052', '100425739170055690781', '102384669117825357195', '103652441454188509895', '115143234371607892983', '110036682383342142442', '108834544234077411259', '102865263115020893218', '115248125732252515176', '118274547296450170219', '106526737947007406923', '108966127324917372093', '107954398003273214795', '100928115753316027300', '111028035383789880812', '115971103286397223281', '107378707924187920177', '115647033908194984232', '102352244144311379561', '108494946397743992507', '104792719356592263558', '107870240225843632731', '109447323719942836871', '110168117080267015976', '109552601721259087926', '113438256900303213931', '114277281405466837036', '100095245926948995335', '101130571432010257170', '112236344213897425331', '102349305007676725479', '115655205216183932495', '105390077271236874234', '101035196437264488455', '117757565120070816446', '107410390066929416191', '116642857391974581307', '110548244043172681974', '115058384974405026221', '117829180598920486765', '103888069615589058326', '118351515323229708433', '116455200564503192965', '105231704254423883185', '105046530334806680420', '114263492889228784076', '107693266712327982585', '111674748486766258557', '104234223956163974769', '111750333595202636026', '104265422458271861932', '108643489696799455633', '114019598705934897142', '103481047858421470011', '106294738773145690221', '116570889542655364711', '104166683851434520973', '109330684746468207713', '115686992336431298816', '109592634059397506775', '106567570642614609073', '103816950273290237811', '116268124700162834377', '114476892281222708332', '106516932879091056402', '101059049290567215584', '105396609818194584786', '107675155083026839050', '117783113906561198831', '104109881446393419681', '101329911725818815648', '111437132356319061774', '107171241573314616937', '101153468639331529713', '113209788861124695757', '104474402194287396870', '116161263828563383494', '113683207338912869760', '114972221948028006870', '105248358908992136650', '117520662938613350446', '107629818779411782380', '111232346000552816062', '101957725892036154972', '101248132798651706167', '109619063322910077914', '104316443417435189825', '100377493270775536948', '112342771836615499472', '113317784690313904082', '108629717769018996477', '114369704013100203178', '105943946099362806788', '105336425684208963598', '116369071500456395369', '103685740157136493702', '111935566152570666802', '107798867186542046341', '115571998474046088312', '116071275946594200077', '108036637513915049436', '111943154038712688786', '115582623750221438794', '113111731715139693250', '106850633151844976100', '118281061832654729973', '115647026292417015088', '107733269574737813168', '108872243576352630928', '103202760473534065366', '104428715480034563672', '116507162463328305307', '116197193480724162859', '104522833443181754677', '112307283830146683885', '105694930790909515613', '116469556577026921142', '100542372891417952741', '116247667398036716276', '116043947632177598920', '109591343291103326958', '108894449265020302496', '116616473522216111363', '101789011227801183737', '106243037947112322316', '118391323892426354857', '105318217552727882571', '105786329165387175660', '106203113965926911311', '100962871525684315897', '100580203868390239075', '102456090968735240209', '110391341631790400088', '112957708071337353347', '102830573534289880897', '108105194941776408439', '100932195479763784248', '104178723837900724588', '109368654259427988906', '118376303525124349504', '117009886930068964404', '102759194596429227036', '114729740472671073461', '110845441428499536036', '117678945305736547499', '110918518132080106257', '112661262066626464523', '118390286079345532806', '114989358912013434555', '105228323457033543279', '100030967570283228843', '105256156026694816333', '113795961594472514455', '100210163638314228996', '112311470127292513285', '113027837615023628132', '103586615087663445665', '110095126245882149972', '105209854925481789028', '117189268819713435859', '111144451219356446211', '101651096660571767183', '103341235804505564047', '107235139478887256327', '103293516438378653921', '106831762557971378854', '117507030172606733553', '105947039153652893339', '116995710336756123292', '115876313538796651168', '110747746419769300628', '118059692451400213176', '105492119742825421749', '112329087841379527102', '105267656376269695918', '115175345058960993404', '108031738037975912319', '104121609875372820045', '118418436905562612953', '110287894893102510451', '116217543656262200291', '118007019733262675418', '106176824286911921122', '118255645714452180374', '115970197492058000536', '110025177084709634671', '113216425001363110392', '110677399908549124400', '113097851206100618060', '104699920090529948458', '116561012331692075800', '103650703836816496431', '106564235165253151707', '113456203738507213575', '101829918821056166648', '115360471097759949621', '105551989431666449555', '104859346014137939134', '114153859732710523651', '104519096412702496856', '117200102155645191486', '102616149286682191474', '106359487807208915036', '106360687191375633839', '108202989932786461870', '101248054507015265353', '100580349003099136931', '115728458120419023779', '111890945016831896743', '115080215652229659698', '112492933628695918241', '111364419696639706662', '106908582141791358504', '106838416855753163320', '116744812192535694584', '102842560023219408624', '102212546854698006281', '101263615503715477581', '113770461910835900905', '100968313568314999910', '117105764275907696041', '109147535954110669362', '105894760755439344491', '107328949221172543768', '113654461547690050667', '115490868856377625184', '112791456928724330032', '106927703290536139147', '101904112625352366405', '115733604509184177258', '102446706738071032208', '110001339139979553061', '113586459466552877584', '116915389609964980297', '114092052797730247075', '103216887847401478447', '101373961279443806744', '113190229460560085138', '102871123574468799566', '107546451810310474592', '107432398539341365940', '103442974084244428091', '115289783041335985128', '104737048903894625958', '116047064092724050557', '107566737427662380385', '112965608024184180683', '117518723197409899160', '103984263629438381785', '112617127041903537004', '103197072119870191855', '114782440157903842958', '117681034834791918293', '107297378329620440295', '109776541085987843977', '109914328497683240050', '100292746296100565398', '104618664838382110366', '115635783790203857600', '104828031573198340946', '116552941560660658912', '117863322265515575855', '107013418740229269209', '111852119488463725230', '114354878556558710088', '108655621696213706147', '105237212888595777019', '112801448828869860546', '116947923643606285942', '112856727349246364776', '107773073025291449903', '103613260673488067634', '108190746792806228802', '115978949584209885559', '107494834634231938072', '114518216782134549655', '103619689952955738772', '115811608074199996286', '101307535045883163370', '116792306951755880708', '116329861123872939292', '107149075470261453144', '117262635533874714669', '103275414019940070295', '110505626196988840770', '116143938603101885158', '105034220628990195204', '106674561143088442070', '118369314436085435945', '105547060999578080024', '102420807080086585113', '107894914670080014116', '107459220492917008623', '116160296886796853429', '103074474198131988698', '110584481927562150689', '105422871059252962617', '102195144388135237932', '111204757488124368395', '113278937129481000981', '110007205463584534134', '107028249541618642358', '109187026428012507334', '118208834515255752193', '109927224666797913146', '104506173451566117295', '111171774279922268425', '109596219054914376350', '109963922595684695421', '114643947103456091627', '106382393460970517823', '102920063140431683002', '104319701938100393265', '112957065719498086306', '106455052219635361001', '107119940474246316259', '117697399358826098478', '116219534929662479848', '117429320390907645600', '115851550445020159565', '118058794383720702307', '111720185193650373558', '110527332382139046457', '103011662826175289775', '116202726148928256666', '113427970254443655999', '100190655365702878730', '100854204636699570278', '115512958737234042650', '108924136210249299218', '114288572990229558524', '113669639330555286996', '107221142875015274837', '105161232143858721168', '108002490988800333787', '112961270204495595553', '115260307850276266872', '117491275366025525159', '105389364748387891649', '117211092043045415977', '115204805503581947511', '108981679893410895534', '117046805137232256926', '108470801637099721956', '113371675585748918936', '117765072461117547929', '117500723574087130516', '115571267671256018716', '100148131753059528231', '109523302262898329619', '107404242080797040590', '101313088594783802183', '116164940517560160998', '110865508009409873937', '107542632252660344559', '116696943168863559388', '102873175118305865375', '103503784030163121732', '112954250556310186892', '100284380639791061360', '116344399331270961004', '114789800183078016840', '107206011570840983380', '110426489614941682595', '106711803105103787711', '107771181372242547518', '111522003007603813028', '111975545018506506119', '114056084994793924628', '114658320069089593361', '100892612779426154375', '105363491534100470419', '107788883146545236198', '105271498619135161075', '117884476143887009277', '106448502258162613710', '103657280492137983446', '108437871879281403721', '111005570197962924384', '101259445219481496562', '109507653225799908921', '103929057358376044772', '100446039411972959876', '102654798672507674091', '117894786365440895276', '109220060006128553211', '105873814765821560444', '114146479114949843175', '112786483320853559305', '111556802835043954077', '110701303409251940504', '104376626976827590822', '112444894894322397484', '116576408371624535427', '107543460658107759808', '108845250854229233264', '103009917125562846870', '111262146038004038186', '114908847203028092210', '107876615810858105870', '115440213129297896810', '101869395366096983724', '101958328416568661251', '118048139271163842678', '116056482297838775754', '109213355974494564760', '106032143128915938009', '108032623298499022371', '104755336394155711931', '103271875952524841365', '100439677742408559680', '115135005437142391944', '112104018110702208083', '104478893233297648919', '117427965408516165606', '103875258484706784219', '115899601830613537531', '114023795588703135881', '104528273104845541220', '102926741437771714510', '112312901875750706723', '109290081130683690010', '108494543072985022907', '100418755507627171092', '106402850684051126748', '100771715351072186974', '103535806271845766896', '106613290939912403243', '110206169594070357955', '112750091316252656625', '107752922497809632157', '116682290311789132796', '109799158691725472251', '117530250543183103093', '112837439401580368562', '101943035898572565380', '104359763476253962070', '106458554244835260890', '115011646412956679108', '103154767864398131776', '105146060706924233930', '109774951215877430341', '111112809838472063992', '101594994894172024242', '104987932455782713675', '106719979779567208605', '115391090911429381573', '114335257693284472091', '113939332173985992126', '116008246625614132322', '101543866482745788167', '114394128653474707020', '101367799604091052665', '117058794763073546749', '107886000936201742296', '107307708524394964276', '112671613807103204042', '102406042148418309977', '103115473754659376168', '114764567692252908296', '114229157887417365950', '100586461319763000734', '101524375883443415732', '113934645215952069062', '109851037140005639446', '109493490725321636855', '109787340448372368173', '104195221079928918210', '110170478425532185128', '107808257391213832544', '103698889037599783920', '100999973412612774801', '110329781365538654444', '111873853137122484021', '111097102522228662594', '101494695494209004052', '106065832799617372150', '104541959256591361052', '109268388872941447574', '117942605302461709656', '104723167398398004122', '104155770298251438878', '109217461409629684011', '114045800510530461940', '100472608497932134515', '111124930081935539248', '103701776102254149778', '104548627795526843775', '117670223716788465006', '106992323093389636048', '111518627657059019573', '117173444820116260805', '108506119827765810454', '109123727761757726835', '100994114474811451452', '112682502973212166227', '117202623485665431394', '108232208525548602817', '112050047245724905079', '101828183984777718546', '112087906318258267756', '111562638514922412630', '104553134624556200907', '105669924377560628246', '117909103589219629940', '103245952838925212735', '114428750997696634020', '117526059267925065689', '111699855306814304937', '107507539268974734333', '105362990780240393762', '108904607472189043979', '113920526057233976680', '115605115857817552535', '102554407414282880001', '108621605232188649028', '114231305708772868829', '102932986213331794453', '109130420645194541096', '107874114351340563166', '117640248138077345065', '107682748671253717847', '105974667002613140845', '108215644829092784557', '114835618008913240560', '112894485849628624264', '109390492169840807116', '114786794106113206036', '102762278318790381974', '113775216082198424237', '111862324534985995584', '107383157816966336384', '118021675828732821545', '118258847595972123892', '102755548808767411605', '101579422741533419411'}
Community 5: {'118012722126814621455', '109431899716413562505', '105353644409523560325', '104038129219628500991', '101733593310231804644', '111414142134975322265', '112158988113590372338', '116392658123441019666', '103264790291097439760', '103553338315150045073', '113941719570692695080', '114239438362390698986', '112648813199640203443', '106507051965986428814', '113866640210342162975', '108505256650372818129', '114101264413335205310', '112708386516513603489', '116770057503140560464', '112961177529030931492', '101429312537446614010', '114328871131658898638', '104912958756793332975', '100972223169596251960', '109304401906824165408', '106201946431017577558', '105345184760149235821', '112100722513740156016', '116060095457534579153', '108518899869937637490', '112281123502975004686', '115998707879974091324', '113572186096020956020', '105092491895451893922', '107505852517643725558', '107984753174704567090', '107169881344097643176', '103095786308890475164', '100924275668367170148', '112405928127407210546', '105663984114368616937', '105279232337138340177', '114316108794739153147', '100795234413276154619', '114727226339079428036', '115541942049354890937', '111506665623601506875', '114037378284666972036', '107747666102379771298', '101026577208733031226', '110886027936863089022', '117932093718227335754', '102234866641005727988', '108957646640477997941', '100555983771623235933', '111879804816350091287', '113847981119703395206', '114297279589570269731', '112296516226188790140', '113780356460405375854', '111947940749970154249', '117658856676157998970', '101131201901730432126', '105404026516300676515', '108326180207746425059', '104104126393959482852', '104176620815979767126', '118131772842776035611', '101160572636384899744', '107077427834322444950', '112926056571568763943', '101713334056435891507', '109656930522654681284', '102019412536996179860', '115404501817951919781', '106129940723605269513', '103947229648298512521', '117558721400503492410', '101749736160313302920', '110462717025736553985', '104330349149426012222', '102724600921308026319', '103209908345925536722', '115020510260858851985', '118407841431001042282', '112827027505903879502', '109479560363527324813', '108373054660269328912', '107563140683873861979', '101157648098648077717', '114095159200381497947', '112288821593048613920', '103795921262630398720', '107215233344563833193', '110125523711063263224', '103804322151293458635', '111645467479747295683', '114085939943834183247', '108893052743238235905', '110838250952802427542', '110267263426056281999', '107297746369427122266', '108324121387278224269', '107563254700661679156', '105511352097370358669', '113539890338733653406', '112979229516698605764', '117168930985380139054', '103788969974099706772', '118199399176290637325', '101749238259723392273', '104903373097965384653', '109129654499278135352', '116182007717399991852', '107956499508732734817', '115329085951772406787', '107902413199140775867', '104134000998523025836', '103097058838721284034', '101860122783337278180', '115390905402961494727', '117387477798861761574', '103048288974752188876', '104795236100046766081', '107044084667875956662', '117508104147947256336', '118004481840782880691', '112142828424041404181', '106200211915312797666', '109015555870543396832', '115297743843365357911', '115944077975550375413', '106078153387741308562', '102587376396978665016', '112228182645210947167', '101898822461726977626', '112119492915454753097', '108649581227879782591', '106107771233518949420', '112594738011040327252', '101027924732182079580', '107932282174453409254', '105202130563498219588', '113382351368267021728', '111176973545500950880', '110964566080877938762', '100357467271869030749', '104473961156686397607', '103622518824295821031', '116577729033623873676', '110710869712203735043', '112776394804213099516', '109369773398433356509', '107829879943483235852', '117507880291928871745', '111913562838390007886', '103821633584385369184', '115919399429868244664', '116307641040925480849', '115539882065662100702', '116534272908562633438', '111872227454610057635', '106943815566411181084', '104981141575060863747', '104087812869056701482', '115971244277534558765', '113374072503920755423', '116784179092672642817', '112911602989441645207', '115513641410528683843', '116770674731626730293', '106638071170930940256', '112806143395803786758', '114840165304260176031', '118439893102421656380', '111817634843049252803', '103270217272741988489', '117236943897668774211', '106128591145024073623', '109705827022896970206', '109375589312705190267', '105638923496773907911', '101812914778545389456', '110464170461772795169', '115719235343153902153', '114248789033154861895', '100593108914782019703', '102427896616425201536', '102042250677900218995', '101278777651211801001', '109271525757672876245', '102638191745753164056', '113281122399367699377', '102640937829491247301', '100211417694760669717', '103043498079311326352', '105473557341367536643', '108883879052307976051', '100997794204907913973', '102371306159232675813', '104138558627816762816', '103948483593747300066', '108158525345779642667', '112799948242083964071', '115358323806686165791', '107851787358656744940', '115420798989570319895', '108664190243521475263', '115065219055340818021', '115250871984578107403', '100649362045731246673', '113006302871297182193'}
Best Community: {'117429013107995808644', '108864551904819486190', '103171849011748425097', '111164095920889813531', '105164570509765092084', '114425823354807757832', '108865224681518296173', '104440241622894191867', '113364856660738963998', '115829633444551708609', '109721367307563395695', '115047896996200277508', '101174544649641947253', '117528398613318925987', '106039133457145256083', '112332733042266989698', '109060858971449443782', '102585224641305882168', '104773279548546374529', '117474473270416055253', '100881617966181022377', '113857713997823886995', '115810586600606003097', '100934380959521245889', '100268819871789028907', '111666959095947698908', '114089069528015035598', '118177166106747864591', '107980702132412632948', '106792630639449031994', '105081887616417085194', '104991205080744824165', '112929717560661562705', '115524852692828190898', '115516171542271021123', '104550678234629742078', '113255309873341997679', '117131320813354732027', '108325036468578880406', '113288790980179920951', '101027357120673263054', '118207880179234484610', '100971870367870906394', '110908444150012188782', '116671803269225998491', '108486058508775411585', '112206783593388775049', '100948037421828558360', '116966817674464665586', '104542524024401372520', '113570225939744343687', '100730482429607730997', '117198316664830078863', '106517092226488584705', '118112472205861065835', '100894513529515310753', '107297699164812496058', '110327927473855794849', '107945426404682361496', '106689856342933829975', '106393478695568433143', '112339769006469685593', '103564230838018928961', '115839767455233623600', '102493891906301577447', '109130886479781915270', '111935860955005881764', '110242571917078285181', '110836322558502335897', '103336848503251351844', '103188948341310400908', '108392504208314197482', '102998696062504667685', '109097951086648957346', '102512310412972518336', '101023852178007414194', '103625305650782852673', '105076678694475690385', '113469309872759209920', '102725109790365996602', '113751353481962008916', '106154669044284257296', '109919679182093139567', '113025758348628700217', '103626856183430984767', '100159937686553564234', '103668412054887723210', '110543757125367015126', '107234826207633309420', '116269625715795017464', '108334318341392054568', '116515627288174691729', '100173452066172931939', '113920684085515272676', '109216467282764610685', '116729089030338695543', '115200251016762857369', '100555383096414009506', '111221480964536174264', '110513964841937233661', '111931627441418090108', '100095669250946685587', '117702410245683101961', '115250637332832082661', '108261172458336520976', '111185660759294459691', '105998246897528884201', '112817227923667759331', '109380443971181362791', '105772184918019707931', '102678339976587419170', '117861338670157326726', '107155666869509300116', '103965582964444715563', '112597557223321833686', '111499016778755078481', '110141895783103581727', '115349337704406940923', '111037600142684781907', '118400237210131015321', '117026052320778734224', '111738240095698701333', '107746993777851440213', '103765655241162838230', '118446147598193798536', '114236604403554541461', '101634980625828210366', '109024079861764629781', '100535636012568504556', '113612142759476883204', '105108491910465347210', '106777791961071223707', '101434622717598713384', '114723964985237592593', '102710934618102174414', '113169713749496726739', '115855207434019427246', '113801236315350503728', '113651533166317708938', '115899514744658620105', '115361545888900770383', '114725869543399343504', '100262595546646927505', '103233967921245494760', '105989807116077671770', '104629412415657030658', '115711608973713137448', '101704103161442695877', '108416974297237895157', '100025536618853941891', '105642695144101051932', '106336287464172898487', '114290753525835355281', '103946955386081802278', '113359777710817483258', '105207689891479566260', '100736094401428282681', '107325929013361579686', '101183471597929879944', '108921476049574227976', '101377053267560854462', '116899029375914044550', '103016521073558596116', '101794216671100303552', '115514397255079403751', '105459039689531835195', '110701307803962595019', '112759904453577892472', '105901259206530390933', '115565811010545226083', '110563351377427897709', '117373186752666867801', '112964117318166648677', '108754297498548563397', '101945672942001217128', '113418995361969717649', '117884007449109471406', '109876467727174291780', '115748662504454470929', '101174951617223562800', '100446424597147316863', '108603838345390534026', '111326500706485286272', '118344481609730757471', '106787150560860988413', '106422711035746240826', '115109077044202722504', '104284466618076664967', '100789590127918881516', '114128837647453534451', '102839963139173448834', '105674332362858502941', '112810965074632510524', '105709875012625507570', '113057286764851383469', '107140884077582692033', '117599103108596130864', '110691778826596363915', '106875990476951662693', '113897172636530312950', '111769225236844105245', '106470960570872432720', '114037557816209327028', '107033731246200681024', '105049886932332906928', '104279244238026533071', '109018224010056005635', '112365355669535634753', '117841261693434574785', '100277428934860974965', '103691312271671214670', '115976612934744106451', '107965826228461029730', '107047796519061210494', '106008941849648772680', '113346801688541032665', '103389452828130864950', '115671588824585902302', '114790424055754975707', '115066534284029624019', '113311736332375450968', '107485702249108153532', '113835509938352188173', '100124389520659251191', '114126118441356742729', '100498091085142703743', '106268128704132883440', '111832530347449196055', '115589838720411185353', '108067729875824092494', '100978712768490992971', '112944532473909341307', '111098575968372675699', '107738046118180603170', '100518419853963396365', '107386694103447865010', '109964383582532868438', '107955540453906207440', '114924247182402456064', '113117251731252114390', '115949235079382739229', '114896892290324391860', '110648497127606323619', '117078929621673758896', '106656341103608827757', '108189587050871927619', '109838958029720050470', '101930732356474123642', '114771302128021571825', '112642573356460292505', '113171346721591078756', '102937884157580148617', '115404182941170857382', '104457994442783581478', '102216887206636463918', '100075356758919993129', '108797840083484244237', '105374700688270765519', '110095183018033797368', '115989323496360706014', '104214171578749661248', '111736936680844070794', '104531609977012265422', '114668932913459899449', '114524640852173748484', '100595379176233392777', '108894779805940659869', '101776230590766727790', '106749254706410187997', '118122556596388698587', '116502877459121437690', '113172095585174683363', '103803759415221345211', '114916424437953222128', '114407290472947588380', '117769401199094282992', '115739378269261680935', '101701640282177869919', '106372800511710859472', '106189723444098348646', '110215372857969443518', '113345621158656129639', '108920368855876462204', '114601381286867969365', '111091487387689822537', '107330528562005281406', '109703654481345966244', '102572320061138442096', '104147032621576433590', '104883301041308726636', '103024721530413569142', '112650348159434958899', '102508986756012589846', '106876108861840284155', '108159551615224338529', '100041310890249910592', '117381651485941996132', '114994216108606649534', '100488224785956829033', '101234870326392307539', '111148929145535325154', '109967616069135434926', '100382502425185475382', '105712632219024636878', '117560434946198914644', '118244442108112916269', '100715738096376666180', '112036164749195069204', '117889380857321824885', '114053103699743693198', '111501187421350616642', '108188280234991720750', '104395894182593241283', '111089720267396135049', '108233028875375016776', '111406933001277454718', '117161668189080869053', '109610954243983229925', '117689417145181059475', '116706979689166677449', '103952215474318614668', '102761022316829734971', '117256325610241631146', '100537991844787325512', '116223161912034050240', '110352049954858592591', '102496256681879364661', '107797841320768724118', '115793765515193253189', '117626851040477437361', '115645005407970286730', '102199777787314348675', '101062649219544970331', '101044647514229557166', '112364132652438722780', '112844561713780016118', '103697821787469756035', '109280758276914754699', '111640272568271242568', '117377434815709898403', '104625241288501781571', '114274687956791581923', '102552895604218641554', '117324905176396235130', '100985192783512595524', '108703512926406528929', '116426599319620195799', '107534991451098430533', '106026445270708973611', '109302113674484082484', '115270991787918797589', '104242709429304362533', '101977577738512604757', '115863474911002159675', '105431853163089795769', '113217924531763968801', '108584546441745128640', '113512364761904452911', '108082478497335384404', '111695952230040192278', '101748907637804612251', '103514675920061873411', '112115199448636041126', '104304812570369572837', '107552965844516484621', '101844248571144042569', '115484551319269885419', '110981030061712822816', '104233435224873922474', '107026299993226528916', '112716356719620674952', '101886706065800845176', '103907806627406122152', '115777169768345614675', '102479184641434405851', '118321989430962111396', '112198627258727043899', '102545157386069758709', '108883923090202244243', '103637153024917466425', '104681313125038107957', '101206766570550710645', '111411000349269479772', '109945968393665055461', '109268440076100174636', '114089739152726761492', '109923941665874520762', '100940716892313727285', '100193529331792590881', '105410260260988868986', '100603420708037491047', '106968322781665348075', '108255750659110762991', '115623533572523039914', '113279319044985638157', '118320665823821681206', '113619286206637523955', '117490083650718194659', '108090299739421355139', '115351143362852372380', '100322256610515857927', '112966941116896663612', '115445433074419719117', '101960720994009339267', '106214168948760942073', '104508507682767510004', '110103641077948436261', '115468408499695328714', '100974506360006530750', '107304599129049310946', '108772200278976934119', '106392802833222729376', '116325056054102075872', '108165165361798920107', '100194394535307018014', '112073853857133821880', '114133424228405038490', '115056011540871202403', '117984723895322432769', '112032230546743091127', '101061020217230062845', '113291236578795391211', '114202150062599138446', '108640673873589796416', '108792139184701213826', '118299777136505117634', '100882238047955853731', '113679091104569847886', '104192099372982491378', '105435074544337918474', '116927391465690022495', '106143004230434426104', '110182488357041602714', '110215708496522939991', '102945758979783986480', '109861183037883512060', '117752870486619693120', '102474919849914171518', '109051167482734565875', '101235095970404720691', '102298718421596692551', '101567641239571518754', '117835008541331275036', '103100496883422151101', '110712282995092828323', '106665185918564754695', '113397118102523602405', '114082129627545059603', '109599220524260072765', '111596893581200856667', '111203177111013925515', '108257742736725504517', '117378848700596735005', '102923147893327767382', '112226108704688540728', '108832773152747423283', '101305776875945822989', '113783272002739131237', '103385763780839177438', '106493780402278226735', '110286587261352351537', '108186999795479387281', '100269980559891536109', '107875584177081127211', '109895887909967698705', '110727249496967897430', '117025861934715115235', '106228704831672899058', '114699336529956127102', '116140208161479945314', '111090889118700110346', '107409876316390165474', '105931402039205614444', '107287291536566815733', '112536035689556132969', '101490250519322292462', '114188216603728208646', '100834378485895409468', '115106448444522478339', '112476991545055404616', '118178631780394474295', '116908845106079512770', '102382264512943710946', '109343820655325307209', '108574688020691152748', '115012093592676187890', '115335950996004437286', '102152774305529158166', '105347537964295352326', '104336243114474051430', '106532684826293540578', '107460400955464713852', '101307099794854494980', '110357001884194145645', '102346400614635340030', '115744399689614835150', '111005666466297482380', '107753428759636856492', '111288574156818690676', '106533248943352121512', '110749379267845817082', '111504766733019844026', '112702880755434909062', '108740570618849247850', '111164228693257897305', '112614367259340988369', '104176937291281778869', '108028643813258312732', '101984790166572778922', '117420368760274729369', '110260043240685719403', '101185406398932804414', '108150835875317710924', '111181389036901378787', '105749394083843362512', '117950453145750849911', '107345380056943591322', '100313449630224835004', '100535338638690515335', '102147343461272423807', '100585555255542998765', '111654284395316165338', '113138134158040553156', '104965028945637304221', '113673756354863552294', '109770122122532409357', '100371752347563784684', '103864158830757222124', '112761340428079841885', '113164038788726940319', '102736222974258337930', '110012123643219804319', '112324817510481880522', '102222722824849858928', '109182513536739786206', '104834129907874592944', '112026058728255591897', '116541152567955767643', '116313642078196142578', '104215081746139431649', '112070836331526481588', '112376477101571611401', '109769935366217033478', '107540638333054762391', '117220625678034723010', '107133948555394893679', '109813896768294978296', '112870994374364427682', '104323762834614989157', '103740417113214720878', '106727811555281104992', '103097764320602190090', '103814653718186136893', '109518670979375035450', '110012545983559094076', '104863859643346885734', '114573060328510500521', '100830163544279020460', '101057616370673656059', '107410585863197912809', '109174551750397653742', '101530982560213613608', '106807787807630457447', '107429025521549453511', '105923173045049725307', '112741876592615487453', '103135699585421857716', '112483309917631634011', '110349110664408276955', '107868937218055010689', '115963821022986200770', '100500245299584541581', '112375066891532385235', '106745624912469757770', '111785060525649077044', '115527632958457358109', '109193674823031718540', '108255121787158995006', '100042105400303837110', '106366615678321494423', '110668479729372555286', '111133089087698745842', '118018621153265389754', '102463809205898225329', '112458713098744435239', '109471523030159349342', '112439267620869130664', '116312861051138180882', '115229808208707341778', '100219691404074384850', '107424684032120027870', '113180815516125966443', '105854725972317368943', '105093051874046621921', '103691436372574870084', '108062075979880389556', '112678702228711889851', '113028930940007165058', '109829103207295789295', '107166369539777818001', '110644979178705230714', '103438332263642514693', '118249005460047214792', '102826652809724883705', '103911183408644149411', '116756512638937817440', '114650747666128230743', '106752261083710991939', '114056321367305046475', '114954579537134392510', '104482086818095930400', '111169893172161086239', '105901258272269401150', '105951083208800607266', '106407425466046895546', '111293022852677971506', '108622331358244378714', '102399741657103137277', '106697379087705183224', '104243053732122719340', '109262616794768311251', '106702963465506867582', '102646278174713579067', '110441797803247642088', '104092260163270440688', '115137019664380163079', '117969632080197716194', '107602882044753150398', '111479734183291670962', '112895551135660012999', '104914829730501706316', '109342995284180071035', '114280709508745356731', '101062235821996561929', '110792797923527485789', '105769508324436137332', '102600774742322762226', '104577330866768309554', '109926473783208635050', '100892411376421396254', '116321314375336897090', '114778355221904601456', '107851284742690875601', '114765095157367281222', '111527837101258158939', '109074857816744029470', '108999765655839446046', '102307008290001893965', '106876635197485451710', '110828670835957136050', '117523047521837823505', '109819399320527487347', '102381548704003539297', '111420149713622710207', '116564746836220811723', '115425017959501168550', '108442197853964458609', '106111195718302652758', '107656088609554509650', '112416140262327925559', '114487965928288927815', '102834614007561141183', '106312895983244085949', '118216759969087724610', '115177816143495522325', '102991700177087923792', '101127849472046131831', '100815200650548753269', '100871988633812822339', '104199015136082090302', '115523108392991665451', '100340837185032075992', '103493459351957813291', '114401727024677849167', '116375213592391711467', '113882113745075873153', '104761281480373833739', '104474227941534479648', '110538901086027880345', '111215626086255858123', '109466960372762300135', '110349587692857642647', '114892703028341590446', '110519684104194512717', '110258899475477198037', '118189632042502811468', '104600296217176278045', '116374117927631468606', '107531155995244310236', '107013688749125521109', '115212051037621986145', '117459628471244992913', '113959563011490471954', '110318982509514011806', '104532246671367338631', '114235594503919622485', '112915952962578336480', '106107925365647314226', '100382076211124259598', '106078945425159812521', '111368128955440097331', '118140262655199793272', '102148902002906233170', '117344752225183656923', '105459550536348114145', '118227548810368513262', '104450760987525660219', '103168036412553245688', '116131244044857846351', '100582158600886787192', '118225519006643983311', '106473332550730818968', '118153417237614725639', '105713678710548955896', '111714769899525603342', '103363359562250742737', '106493629342570608597', '103821567731080143888', '116807883656585676940', '106935269738929891479', '100008438047495460295', '110351160992477343545', '114489276586542400632', '107808951807533655192', '115632939368970139294', '105108471251733473504', '115314704721793037922', '102700271521603579909', '101169865857654555922', '109448162492198686266', '114917776781939549995', '108597108691073044868', '103140137391526341351', '113351703941294630458', '106318111152683661692', '109445136842856929944', '110315521977553596228', '109896500020068316720', '115959122085580299826', '117691391504351341685', '102305438832315209054', '115788203615961124571', '116762461061414014956', '105343468977483636307', '113210431006401244170', '108610056059491923585', '100250719688614433914', '117602624904779224395', '106548033421694422554', '103347174328293237566', '101697775213251991950', '114313391327271190032', '115569337548380164808', '106660499961741445550', '100854202666064752024', '104577477189250223067', '110193533410016731852', '104753156470151028358', '115952742972415824602', '104861455140173164919', '111185848672556379969', '102706947732554520786', '107896527414017792767', '108718290339280456422', '117152814213463502428', '110858566556215922899', '100871232248276491534', '109106843297496158611', '107125656733807816445', '101261243957067319422', '102397052073935758476', '110101984758324108622', '102864603075591269997', '117564596582351536596', '103345707817934461425', '106600962597764825745', '107989370857115020482', '112726038360301567381', '102737788855280055354', '106056812477855110591', '108896556048763968559', '104612091113514802664', '102576348057540922743', '108432909864222282451', '105637293618598027400', '112783904517647178343', '112975947891556571931', '108576950625288563489', '117321522765125194699', '112269775811709161979', '117096769294242969922', '110929351399428170240', '114753028665775786510', '107863815725205770085', '114092877557636198396', '115360979797396777969', '114629508960670409934', '116951145888391044655', '111273350318354404555', '106355261544559696871', '101627184386225671987', '117997508248143467215', '102221205611883843517', '101501473678884526949', '106489213738169001058', '109250100231387503657', '117831948350177566513', '116059998563577101552', '101720949843787442951', '106434073353360803681', '102381449495144889203', '107241142244507545804', '115106680289932322561', '111601729473858041964', '109922076073734754844', '107587767610354254576', '112477381832788364129', '100250696754987625379', '115658896387238242974', '104849340488933629464', '110937137992985950150', '102197284839293503038', '100709366424987372595', '106631699076927387965', '114188765352122748745', '113381345113137429126', '109140277806644720261', '114277687548103339609', '104865837206726587564', '114549564725160709822', '100807948259274480594', '103929740436666277619', '105780487374226393830', '113045187260472773925', '104405539079062799451', '117217807403956460587', '114424163811716070551', '113006028898915385825', '113072597372460461083', '115919664843599780912', '111009337060958697932', '104390246098751387487', '112900861098428671533', '117540092106869387764', '100523784851251213675', '116568578395534463017', '116416314233992548280', '104201441411804496708', '113001073761536909453', '114149296801704936672', '103282208979302705273', '103399926392582289066', '109550818599769670856', '110808332396199370089', '105415132823244013603', '109410049853740963142', '105910977869522122580', '104961406012654314344', '115916689903804116666', '106391505795084010894', '103776556304688195035', '108172009599607363531', '107130354111162483072', '117378076401635777570', '111061467082516364992', '106526452034734966566', '116727951144543307899', '107420422968461975442', '117959241991509944145', '106521388020777868025', '115422622153710387598', '117414240941443846478', '113593501038935994355', '115818365607064275331', '117421021456205115327', '111811097894909948082', '111585581956730395692', '103522841430099843089', '102955281870955134299', '113010729939949185045', '108696582604808530200', '100397511207083609950', '102980854309172865968', '113544612456362856267', '107006059340452534782', '118099811982559640114', '108592761155307936899', '112451028459884611717', '112707199408484711520', '103541694080221120019', '101010433515025028997', '107399939660118023501', '101951294740286010890', '111088960949686598611', '116812043050833464706', '112697945783971379741', '102934220817987641543', '103172158448932010502', '117143263732114637225', '107391346918211701146', '105240469625818678725', '113116318008017777871', '105421989284418308161', '114998005307649296364', '115564720243320133605', '108510261342123234892', '116588051824631936519', '113664792180690237922', '117693415411676715849', '100492431527288250143', '111105792005128537628', '110404902994335579225', '108033818031897165760', '117617463050753227430', '107305092312705285731', '115947571425501492839', '102989073624322904979', '111294201325870406922', '107379489464447013340', '117139907586011263319', '104054615564975632009', '116992221479414639679', '103343410323328731347', '118245582992926562637', '112974082547153331507', '106802084872920510496', '107668018853508633698', '116168738680304175903', '105382907771397302166', '116062862517105973396', '110378953230340021029', '100696736492387120828', '116963992369982295735', '115710584429852254478', '101057596538127360985', '109038475317623078626', '105545068944703206621', '100522625561161188418', '109247306373593947755', '114244914082871792125', '101560853443212199687', '103871883270165000246', '111538009015644508967', '102088173699409175139', '116394575739281318169', '110209787594312878744', '102896689791899460747', '100441642353694045036', '101690858054612129921', '116768967108862685383', '114632420693151942233', '105201176373156907412', '113603540546097369518', '105621256641165170370', '100412924688231832713', '106990629754929211946', '106829364795701933124', '103637004042802406296', '108648718072351487172', '108897363724526154071', '105722900792713093105', '109037673813544779645', '104003218615150837061', '110849429584485336015', '108961403889829901542', '108729927392113951912', '103543336764649563510', '103012564142649561853', '111719533163202900131', '110623746254439487621', '109714254234974197507', '106459438215700058744', '107606703558161507946', '109886504130820190430', '109647414478579447218', '107261842714883148826', '104490445002708527032', '111285782175840598932', '101311645735585775899', '101935010073334602731', '115314902915025797112', '115621287468218045232', '102110715788542150395', '105787363183175221611', '107320030937966635528', '112710501221399450850', '116831783688307503105', '109731666173059832409', '111924364306669542201', '103903198087988193655', '111091089527727420853', '118246412183062133215', '116491285067171323298', '106143876839173486558', '116989886224744526699', '117033715264863371696', '101111725148957537937', '114685727151899977785', '100784670873737717716', '117673062930419636633', '108618201393659007488', '107951823638685687042', '110467702883125654398', '110836650556449892392', '101230102913877281357', '113941754758699330333', '114904352415796399155', '104458801156000551882', '106975707959313051828', '110667051989318694079', '111797789494011250472', '112403562981201111940', '104464509525006371077', '111314560398897822177', '105279625231358353479', '103300363750121441954', '113618186512902058035', '106461514211730207895', '109938202835872364257', '111310990991240556038', '110615203095633370838', '104765385972302540562', '107833107845497630206', '102094472433974490705', '104487667381992067425', '106829982251244280155', '105273428597140573510', '112711154374511525164', '113740905109081801596', '113891423043364949268', '105658879872801771303', '108223422178494633308', '105545635323537037809', '101023108591163366943', '115813646159649714247', '114979733565079457374', '117791391761541223690', '108427814031519898124', '104764198267567410759', '105822688186016123722', '110741836870151771516', '113489241287639165132', '108794292461789825190', '116986422495636163350', '109412257237874861202', '103861741370066605527', '110030752161435403258', '103887646945247867113', '100342703577899262613', '113609548050074203851', '100258208745065110297', '100101132561104295530', '115489498904281734573', '115795922793625343479', '118413369000600998624', '102950241390416468435', '100074919848611839400', '104516819846796601045', '109555919001321700626', '112326867483489579883', '113312618768961578323', '112055234430263833119', '115982989172889057014', '111336527206042452530', '113930222818178989616', '101835433272879715504', '108226825694145957897', '115762948355957985448', '103322096164320811619', '102648148748642147788', '100335496845020065289', '104227734437064715480', '106416716945076707395', '108178180066149902997', '113082126848885774249', '116470022031391579601', '102536991536106306279', '112141931042568948106', '100281903174934656260', '108770025895417156764', '117040728745302189773', '101309028361444868427', '110363330456418921054', '100182559439523737305', '117388252776312694644', '106938519841593324674', '111847681338536748529', '113897594280127224121', '102034052532213921839', '114999153204626637344', '107585064260762461663', '107755971901486944402', '107117483540235115863', '102944610657154936062', '115080273675497813721', '102526588608543179608', '101335221024758008730', '101849747879612982297', '105138455137731648643', '112276589013569458330', '111887349136350560515', '105350495573144442379', '105727132127821749217', '112063946124358686266', '115037313319624350537', '109747793098916934740', '105887798538435693558', '115459243651688775505', '100487969343352743165', '101354187406071300822', '104557885419342982371', '107349307374942155906', '102579928162855977212', '104808196767244382094', '118047157436278848959', '115622466243011136115', '104896279899522511298', '106356964679457436995', '118391958784160529817', '111883881632877146615', '110004716237212403711', '104706762420578115324', '111000835266298743697', '118286066577375726426', '112961527663845879073', '106620873921373880165', '102159346922118307645', '108741250435676131889', '100612175927429294541', '108122951942314673896', '116424992718521920045', '109581870574956225297', '116910893460383906727', '106451049289581674337', '105393083628412021020', '107642724975085424064', '108264998570838621572', '115655034901162574758', '106914186897370535526', '103918544362469330603', '102311554030427331560', '115792812685025548090', '103510189176184025105', '111924926392072104223', '107899346809500297044', '101015473124516188989', '115403856867272859027', '112961607570158342254', '108652640482631482795', '105714039375338797059', '105481930047290102912', '117626213085054494709', '102060784065029072375', '109496402362800113489', '111924641708244560608', '115552999294763744109', '101540468776840533944', '113127438179392830442', '106869490400611014916', '116222833568410151476', '110590358677369779995', '106717946845088683921', '114783963660941257693', '114059577221483804357', '110638858118947494578', '112398515632347301349', '114956127731908159731', '102976465024742837897', '116381176537835440497', '117350989957881101918', '106439042524416914269', '112707583697711905956', '111193894818128580437', '113326499478607390840', '113097276181543898574', '110835860568874226483', '117319896746731581831', '103239655111676058756', '107776597198552698436', '109050107863846136002', '116531647672725843929', '105017513712037820155', '114716671631005124422', '102048265612444661933', '114891934677835796437', '101792420885438335154', '118075183072651168374', '114338217792003600242', '106100296973968329853', '108004465885047715848', '117826731803569547326', '103243072185732579499', '107781761552417614958', '112460361944526645003', '112770142454015377896', '110532983418913074480', '106478271434987235213', '110321775511217120259', '103460347843859150407', '116697908009504433191', '112586149667607531498', '107472474647563857708', '108084961215908246598', '114907254818162267650', '101467412948752406148', '117903011098040166012', '107149651579627195125', '101992164641802634774', '107968787521028284191', '106682831104422461380', '113247423264358423892', '110754163217982167702', '108002138812927763875', '117743699429239435303', '109809835379677001002', '111318157210459855372', '111480413428119678209', '114785135385262933560', '116063623328346676608', '104985017023946252339', '109167101392398799057', '110874778461943365830', '107469895927414342167', '100331338428465688037', '108967323530519754654', '103811986080200855963', '111128778940913280838', '107349300571630381772', '115512736218498769502', '114542752454519869265', '115695578304416858659', '111499908439497508351', '102583849990761016900', '117940797281312243002', '104478246706905872064', '103207773865797007066', '110394599356932147330', '115974650809850761094', '103716847685048716973', '112550116279721943627', '114310601130553067134', '111500053552799598950', '110923967234619920955', '101879656850551340719', '100732792168944455620', '101698568710409127237', '114745374612821245424', '100364844226863135021', '117037988566158662557', '102871830398264157687', '107858226132224039781', '108929403611931887447', '116481445670176776088', '106775609116257959283', '106979372492552141708', '110720576611232766643', '113698589973698283456', '111960527250858280267', '103386758086764797317', '107838676623404440847', '117749465598216140785', '109409183697005229195', '110593963566088558937', '111707273404757375952', '108048345204917994760', '100280501907498761662', '113878279269179440193', '113806314825655138485', '110760151623547085696', '114738075629051960079', '107918002962259107205', '111293271912099952469', '104484219049883711215', '115780865240170367976', '107164208673760588451', '108378060444638319597', '104774309513755344292', '118364566103966462104', '111656240650692979516', '108335647100304181721', '116145689779174805621', '104179323350489956912', '106855668231038715661', '100844400017051594747', '108346637271615594833', '115980322864066690488', '116889019895385244422', '100320175239277283592', '101436633503339641010', '107054398730220626019', '115565435780133582298', '114936764159343594557', '114840173700805743995', '115302451851587317396', '104801768486806000734', '112269533742014561750', '109809580267329149985', '114826457457941066820', '106737308305135313033', '104323674441008487802', '104244636287470350450', '112820512550939559523', '113475277239647026452', '110819164064004736471', '101069176603529970895', '107639853040559850965', '108742041188304602313', '115017401467423642930', '104281401034115714032', '102270894704382610216', '112974512141998019365', '115334822962809221692', '117804314976992722918', '102774783758711593873', '111540987882513803019', '103456272985377933748'}

Louvain Communities of EgoNet 108541235642523883716
Community 1: {'117808925288865527025', '115740425396974668440', '117377434815709898403', '101111725148957537937', '111164095920889813531', '114685727151899977785', '115744399689614835150', '116222833568410151476', '102991700177087923792', '113364856660738963998', '106717946845088683921', '111255863953184177902', '111099133387608816869', '104523937022819424424', '116381176537835440497', '100258933461856349896', '104730969284048173235', '111293703111615229109', '113882113745075873153', '109447849655350232737', '115863474911002159675', '107140884077582692033', '110260043240685719403', '106792630639449031994', '111215626086255858123', '100349743543849719885', '100392892147531800897', '107307194456811822870', '104390246098751387487', '118207880179234484610', '100535338638690515335', '100523784851251213675', '108176814619778619437', '117245054937343378617', '106876106366109230271', '101161312870020057580', '107226127526541403399', '107072035581218462658', '111395306401981598462', '113756014567052941747', '106526452034734966566', '116154269478833904015', '103389452828130864950', '104834129907874592944', '107945426404682361496', '105620531063767546157', '113754283359377615013', '106473332550730818968', '105540241924141497089', '103643162894536968927', '109412257237874861202', '112632697423913999576', '108094760132961329912', '109813896768294978296', '103036608814734002706', '113935610036479992652', '100940716892313727285', '103140137391526341351', '106086121009771648314', '113117251731252114390', '113751353481962008916', '107427974268380977385', '103778462564599113222', '115017188374689068228', '102490327476843607372', '108189587050871927619', '115404182941170857382', '113686253941057080055', '115695578304416858659', '111499908439497508351', '116594199576805510790', '106633889788682321324', '108053344167695247928', '114884726921304148647', '116663982997041117781', '112465521483223928512', '115361828997207672756', '113116318008017777871', '107009249268118408217', '113878519978828324792', '117260336597119077984', '100854202666064752024', '118122556596388698587', '104630484391536529851', '113662458852848309236', '115570939558790629700', '104753156470151028358', '104502152172934080159', '118299777136505117634', '102034052532213921839', '102443055443356357765', '110215372857969443518', '106189723444098348646', '114963335823650717178', '100219691404074384850', '107117483540235115863', '103429767916333774260', '105329929314379043455', '104128454477572697430', '107590607834908463472', '100159178896104440459', '100415345527134852246', '110760151623547085696', '113424222789153728067', '108159551615224338529', '101962829696981365403', '104484219049883711215', '103438332263642514693', '102467684150504816942', '112099486767175481894', '118177189004466545044', '108896556048763968559', '101560853443212199687', '101225591384395537943', '111952642093556825738', '105006381068870463173', '105237212888595777019', '105450804580077896136', '105095083538991543994', '106723760098690366676', '116651741222993143554', '113843998775098502890', '108551811075711499995', '115130390735317423919', '103233967921245494760', '109213463086683318532', '111558319297322546031', '116585534264633935760', '114629508960670409934', '114826457457941066820', '114771097028576417549', '109895887909967698705', '109351399938437494273', '106501936839371135482', '118017199865619527057', '115018064954042406412', '102600774742322762226', '107849922105700858631', '101794216671100303552', '115185211980778442255', '115514397255079403751', '104619747503393735851', '117840649766034848455', '112018516595149025586', '112710501221399450850', '108012991939099820186', '107289961585411779306', '112446452660061734400', '101139167041442394792'}
Community 2: {'107494727142915463790', '104402312334775525717', '109345865429707844168', '104142754390088344306', '105733948050774149627', '102512541586858673434', '100537772575114025993', '115604980276640526941', '106496967013882292185', '112915508949553064969', '111173171230586494613', '113641354088554800188', '101488008052888335356', '113532036700237936114', '106328387072777040158', '111625639286470334885', '110688474802292277786', '107625733670511152905', '115126222761735927257', '105699527508121484553', '109585716855239048243', '102299732908887751198', '105004335241251586694', '113210890654034986465', '116638958379604473194', '101426164395172997809', '115599866490385225976', '100351700763266493358', '104449572275071184198', '115366624923467413091', '109734221326849566494', '118049752810287995066', '109722189944089510033', '117131320813354732027', '100339934536910916220', '112246417337956018738', '114701420583282435406', '113989994225911747111', '111948878041168186917', '106018807891386594468', '104018805003766750720', '103168732943375073388', '102314486331710415915', '110292711527889111689', '107982618909749811163', '104286363725914412325', '108702243956983861993', '115446929412835725862', '105453317522683443187', '109306316429433053213', '112968305388793808815', '107589895345000267917', '108986482395975467331', '114822401067576646327', '113687916808174552540', '112266407581402154086', '104896537673470410734', '106073502505833617615', '108080970085621717187', '105161826956932743650', '105421360534824524100', '101494804320126833381', '117231658988287858700', '100188557028585168265', '112903919681703164454', '110255709702147736441', '104973761519912571719', '111161779241537203959', '103130481151838170197', '112016573893269448710', '104068455053275435149', '109861075689715799208', '103945298130957582851', '110107562591980573545', '102898672602346817738', '115221212267692323988', '102135222412427650111', '113965941618509981423', '102219475968800204884', '109965539845859227967', '100432553261066087651', '118321154050442304599', '104109276791574356880', '107101208158314368393', '117596712775912423303', '103637162978776725632', '112754494243408214081', '108270712126515524163', '103533326117556337218', '113998127376703212360', '117665613028757061169', '115121555137256496805', '110507996978242488651', '115558779859554883235', '104672614700283598130', '107126665887970596868', '117007141540857946331', '108588076582379537686', '115702306533209355625', '102712302351237374309', '111198710867103101505', '115234935608991455556', '117298449774201305386', '114197829616375652831', '110106586947414476573', '117353660349845808660', '115937548467085433876', '109434154213098606351', '100384356912885326394', '101494259043249553389', '111515517959993316206', '102606531566113441640', '109463198825262877115', '111937360718773567818', '117612501033972223750', '106306771055224212482', '103181848666629026653', '112724541174117620122', '110785984091746943149', '106036588985851683922', '114579585661410116649', '104338841195844391499', '103171533792240062855', '113518697815635920172', '108505558087127895508', '117299545239997513672', '102615863344410467759', '106215718640234782825', '115029186078239273995', '112366735963271550830', '112652642866960214917', '111499475665106694998', '115490868856377625184', '108997795964011637689', '106098286123499266853', '117059593834355077199', '113468937158877720503', '114092052797730247075', '113849626686834175214', '100613758025489484795', '105324761189549512199', '111455687366448679827', '115829854934725647908', '117596714593877854987', '117861338670157326726', '111066716680402389980', '108739566092524292248', '105089961750729001526', '113420422244530728570', '101171100798988839208', '116772708792764352748', '113515396686929218858', '109053233996223373700', '110899709105002539146', '117126068236790799917', '103941535737693167905', '104449102503528602799', '100622502206917250723', '101852559274654726533', '100251061855880028382', '101171090700644838416', '107672251758752795256', '105619612583444501317', '108632686412421589637', '104119608064940163872', '105574566053602019710', '116342937492510737097', '112992320954091012527', '102712928223774132007', '106677933862286361195', '103614891582957065589', '102780726906835902473', '118120125065490798361', '108935919227013334216', '115307003069691533470', '111041461103936222764', '111083308375001753987', '113388583425316146503', '117888860379667170672', '102381143844646970586', '100813229168405788654', '116293310171313567533', '114520316604615393902', '108131708344427352812', '112165530991102646166', '116208861859952939921', '102668364885894493476', '115314883913773500000', '103958441795544241153', '116795563095981607931', '102528718122061029071', '114930558215776389910', '104751214491331749866', '114255121290044538178', '116046131107486389598', '104317168426965250046', '112509132460368995491', '113186623583029971455', '108943292771761383631', '106984799703718932520', '103038287804535196503', '107852024581506537873', '108575961322871913333', '116166660014087779586', '108152252385291870699', '112011605270017123101', '100512649718649402368', '115940511630531767202', '102492519891813011260', '110221517713911114909', '114489896421633993927', '109200005789377605617', '117843617175570491498', '100266095938377120335', '115471815788264818704', '117958363368979774542', '109440206780255757543', '105496065140915063217', '113797508378819391794', '110556772494804817339', '113383623452399451554', '104028329852681318179', '112809556036676880852', '113381483153888636532', '108502670315441311095', '102533732658641069172', '104507233842972305384', '116593428335526725448', '110363820747461775831', '116942397717536105883', '110607703709700799337', '117603418437094018321', '100329511310247227785', '105489064367742025310', '113484544313014606167', '113946715443571015123', '112301869379652563135', '116581478643467215892', '103739686836221835119', '112878018292881361436', '102886708431831530206', '105233832085687188676', '106572298019121580582', '100974258168375166691', '116354326277822099288', '115516333681138986628', '108808011895597334215', '113141491911286106535', '116973390574320264137', '118422403820332162855', '115822767084216096089', '112364540357127470935', '109711721158856077787', '109407911046572406406', '104487223275138277820', '102130162677679828120', '112561860864020930009', '100474212268833373292', '111839842894509555034', '100969232856312001330', '110829304592314630889', '114424163811716070551', '111698095221811879818', '112859244767729828637', '102287469036218621421', '116588548596017884744', '100651621769656849775', '104021297424881076290', '117087402937869787406', '117413551943364608805', '105656674180913666200', '101766891673708330530', '110875483775097751219', '103030116155431184588', '102087257702756628549', '109980146256159069408', '115360504592641443999', '107023475113646570269', '110345156976813195439', '103912692648389663190', '113255240335204167235', '107747666102379771298', '107771181372242547518', '111776370104933282203', '113900617513663731605', '113881433443048137993', '108842492591796792953', '111112297042090413630', '113849854505123227374', '104538563453861838640', '117473477005177317943', '110592217550794732321', '102538905206519918173', '116196404021952428596', '108291790892450338168', '103170649990710136632', '112623464177403117558', '110139793201519692307', '108523962860904481095', '116909315521951049368', '109745932501512349659', '101600394231100833788', '116971095029701257834', '101861996949895074943', '115749701515945147883', '106268128704132883440', '109499411748464808418', '100294111140576581930', '108187577207608337534', '108759270777800830775', '109602109099036550366', '116792118744662189562', '115020920324331583957', '112269391908122006530', '103684974087620751394', '116825592843709362934', '112139555141728231689', '101267965565111472719', '110735228167430300745', '106659586779486287121', '114728245424310221692', '105275638908165446414', '116578863493864261470', '117283174365630308265', '116805285176805120365', '118297780429110098708', '109172813571934524948', '117504637174147176333', '109649264094810211637', '107794901657046516409', '106201641485302515655', '109342148209917802565', '115287640704144951783', '105474544524715065767', '107553326043454394306', '100675517463381490852', '113128191837051673707', '115135005437142391944', '108991279185317231933', '108182489610762944351', '113089996646628106127', '106382433884876652170', '109255183145564237493', '101885535290923906476', '111077535166060171805', '107313675531983974280', '113966331458433578834', '118011560178264222649', '101025269691961257466', '107207451447835171838', '114954712448394413847', '115085828077786850700', '102221942940843100503', '100186938589206311054', '103513848315989859608', '101881814901888951402', '112849818601770012364', '106310418483081420621', '104621204832216628958', '117812416337165490346', '106791138796860430554', '101397516006687049364', '101872015774361781592', '103741803705028185417', '103814888866762876902', '108167150134506196220', '111048918866742956374', '107379489464447013340', '105216491640488683417', '108960343477388551490', '116526029025767924065', '117344786984788205452', '103010542782798856787', '103618862132298404107', '111968283335829242217', '112353210404102902472', '112502423728898124419', '102744398904875314224', '113316148669723868015', '103666049006309089442', '102218502614021519543', '100976627641380642868', '100383526805651207186', '115604024842201016447', '109717489110482080481', '114567575685117086123', '108514209999217721881', '109327237933872366138', '106734796011714755852', '103263667465005102085', '101465854435804471513', '106922749016154628590', '107235245709526978427', '103068825327398983563', '110815228753558444774', '104857406109954440836', '114765309169217444723', '107446552448005649461', '107323726887023845557', '100961385622810058361', '115342746161292961463', '111548137920489485631', '116889019895385244422', '106680170153432597268', '107063456262289859086', '106395472331944190977', '107816151350992757485', '104511933936275853523', '101165143416503473580', '116845533997042633083', '108480231874301910354', '107789623338445963350', '103627647584203022329', '100855797004917861250', '114853458007065354930', '111562638514922412630', '114468593663912084118', '118328436599489401972', '106012471647090911983', '115330849532868630924', '111753692932315740237', '108881125597447085896', '108413597447248376486', '106273652560219611411', '108541235642523883716', '101252271355699391585', '102010353130079040444', '106532709318061274779', '107339337083351011695', '101292327494251658716', '116640923223897011110'}
Community 3: {'101062649219544970331', '111091089527727420853', '112364132652438722780', '114487965928288927815', '117616695405326289061', '104625241288501781571', '114274687956791581923', '106312895983244085949', '108865224681518296173', '115177816143495522325', '104440241622894191867', '107951823638685687042', '101127849472046131831', '105912966310368032981', '116426599319620195799', '100294995440554808691', '106724181552911298818', '100934380959521245889', '111666959095947698908', '113217924531763968801', '104474227941534479648', '108082478497335384404', '100307707863057679896', '117396967625184275029', '103325969492772452485', '103486150650858067282', '104304812570369572837', '104600296217176278045', '106558624321906428377', '110519684104194512717', '106952974709619007593', '111310990991240556038', '109606334218437330745', '103317683426269230303', '107833107845497630206', '110671547565979047871', '113607435918549143249', '110318982509514011806', '114235594503919622485', '109504122343901736603', '105273428597140573510', '117198316664830078863', '103564230838018928961', '108883923090202244243', '103637153024917466425', '111714769899525603342', '108794292461789825190', '103861741370066605527', '118395148094907709551', '118418436905562612953', '110351160992477343545', '103188948341310400908', '117531531564039468512', '102998696062504667685', '110040001084209829686', '109555919001321700626', '118320665823821681206', '113619286206637523955', '117490083650718194659', '117691391504351341685', '108334318341392054568', '100741560621611999898', '102842560023219408624', '100250719688614433914', '116564746836220811723', '103347174328293237566', '108770025895417156764', '110193533410016731852', '115056011540871202403', '108261172458336520976', '114388497507538715293', '101915226295996051057', '107896527414017792767', '101798506124778677222', '117245298692605482770', '114489801087255698678', '105435074544337918474', '102944610657154936062', '101849747879612982297', '104986291293414058849', '101261243957067319422', '113309470814122509541', '109861183037883512060', '116926420836139796850', '105887798538435693558', '102766862318438263839', '112726038360301567381', '103100496883422151101', '117818363829980497205', '113612142759476883204', '110170441955137452576', '117834470724154925643', '104612091113514802664', '113169713749496726739', '115855207434019427246', '113801236315350503728', '106908869066816337684', '112975947891556571931', '104706762420578115324', '112226108704688540728', '110929351399428170240', '105296147923592870090', '115360979797396777969', '108741250435676131889', '105207689891479566260', '111090889118700110346', '105931402039205614444', '101183471597929879944', '112399767740508618350', '100834378485895409468', '107864377265514441999', '110701307803962595019', '107459724193454016289', '116707419903535483593', '107393004802279488962', '112609956355138553458', '112476991545055404616', '101606040925310416308', '111601729473858041964', '107460400955464713852', '111005666466297482380', '117555990096315491864', '107753428759636856492', '109876467727174291780', '111288574156818690676', '116621986644249676039', '114291878202038589039', '114619623685989006732', '111326500706485286272', '104204331916057864710', '102948679177783493401', '115109077044202722504', '104284466618076664967', '102976465024742837897', '105780487374226393830', '106945565311859894660', '112614367259340988369', '117217807403956460587', '113057286764851383469', '106875990476951662693', '101984790166572778922', '110691778826596363915', '107245525664765338495', '117550971892000156946', '107033731246200681024', '101360661542675321209', '109550818599769670856', '103399926392582289066', '114716671631005124422', '114891934677835796437', '110700994347677244209', '116802117190197146689', '104961406012654314344', '103691312271671214670', '115976612934744106451', '114338217792003600242', '110273816828653490746', '113872580988824095186', '106100296973968329853', '107781761552417614958', '103098855986676641514', '112460361944526645003', '103790322051974623058', '102222722824849858928', '103628798844723879427', '108267657361246882904', '115755194763571615856', '115422622153710387598', '101288593495419475448', '115561753390919046363', '115775757680480988681', '114575011306147603127', '117421021456205115327', '117954342266917774594', '111585581956730395692', '111644392534392541405', '107133948555394893679', '113521687990607909565', '112870994374364427682', '101502443101885979172', '113247423264358423892', '115585398292418640701', '103557575409252093663', '108002138812927763875', '106564105157127674161', '107006059340452534782', '100518419853963396365', '117743699429239435303', '112374836634096795698', '106506966828595242496', '107410585863197912809', '108967323530519754654', '111128778940913280838', '107349300571630381772', '107429025521549453511', '102216887206636463918', '100075356758919993129', '102934220817987641543', '103207773865797007066', '110349110664408276955', '115963821022986200770', '107391346918211701146', '112550116279721943627', '117805269367460608808', '108618420847599320315', '108894779805940659869', '100042105400303837110', '101776230590766727790', '100732792168944455620', '102463809205898225329', '108033818031897165760', '115739378269261680935', '117769401199094282992', '107698577967913285817', '103474499706750246179', '111191369840816333291', '104063158293073691415', '106979372492552141708', '106227298086992870281', '109703654481345966244', '115723497250720724489', '104844817047555881215', '112352633407725078192', '110593963566088558937', '104147032621576433590', '111707273404757375952', '114151370744583208669', '114738075629051960079', '102444453239525479523', '105545068944703206621', '107691215066783437198', '109247306373593947755', '100041310890249910592', '103911183408644149411', '114994216108606649534', '104774309513755344292', '114199219545463600767', '114516047414042281846', '101227597356467677514', '111538009015644508967', '109967616069135434926', '110209787594312878744', '105712632219024636878', '104179323350489956912', '116768967108862685383', '105201176373156907412', '115492422592522200642', '101436633503339641010', '111293022852677971506', '108622331358244378714', '116925190375967559944', '107054398730220626019', '110704492453692501997', '102646278174713579067', '108233028875375016776', '109262616794768311251', '115302451851587317396', '106829364795701933124', '104801768486806000734', '104003218615150837061', '104244636287470350450', '113475277239647026452', '111285782175840598932', '100892411376421396254', '115017401467423642930', '104281401034115714032', '108999765655839446046', '115019886746892568919', '117523047521837823505', '111433245253472835474', '115334822962809221692', '102199777787314348675', '103903198087988193655'}
Community 4: {'113607618886547846656', '102331775073980323044', '101608784593814552339', '111172562319644899134', '117673062930419636633', '108810279611031935715', '116998538961602699720', '113602327320163521345', '101658673185885864140', '111671473634423889742', '106722498995822124406', '118360429678225375146', '110067835153954222370', '107108944317955487024', '110027801358289770465', '108272844934491300941', '100401849855292725649', '105653635419769551939', '103142539092031332460', '101314355920612678707', '111316721371208386351', '109870972371295881074', '110873501104067381861', '103846749826624890310', '107127663445435651950', '101822457058478980551', '104533871975423758471', '114772617034574502530', '114982912824400078271', '107107204147787639472', '118350537580006386306', '105140389465525161529', '109755322134747033979', '101803661787164895191', '118098584998450483854', '107543179443236874025', '106681243710619131520', '113942908358079779113', '115937196028615519609', '109224939086722716827', '103814099427223116814', '108009424581861290509', '105154673398478870603', '116912646346388238768', '103003106701885599444', '101222125576635425546', '100014595154057929534', '109877646481018085864', '103358508821091891427', '113677914826272485113', '108967758027688453900', '109396053825434148948', '112870589173901690895', '109425702644986550721', '117853022948555251608', '101946534256233027153', '103250420549906046832', '105266705022852248042', '103496887477945006772', '114680032134596673632', '101258241687735204088', '114652664809652456182', '101264091937341892971', '100066010057773449534', '103170905344370158971', '105971871972726847055', '109743800495515293387', '116191334173783331002', '106623115356971199088', '107765155354887834405', '116587379281380950087', '112048070794252585618', '108413247499481325229', '103202240098405384849', '114678477672875009168', '110379434263550065795', '109184610544659484621', '117199859906111414956', '106494230869455187834', '111902435909328987615', '104269474868929828196', '118146622799388835070', '100172442532709511826', '115760244242681047833', '114119882749113484760', '109515092773912571908', '116708037648384852257', '114871804602351797167', '116083619249156426296', '107779207112674704151', '100295644055251343399', '104202267660369706940', '109090908053575949807', '100206733811033963506', '104293445472082130944', '102602889827610009164', '114539176578060659660', '111430232048492401055', '112283747867833539036', '106494143959347608965', '101913074646163227284', '117626484310611183449', '100429378942334881740', '103995636533594675684', '112487682913586019731', '113763378399184346661', '102373378383315494477', '106605578699900113471', '107847614829830011243', '104863357314400709084', '109270874872875578638', '111146108644974413761', '111690959529879721906', '105028319803687446323', '101938733501740689957', '100262595546646927505', '102557642590785142915', '112463864366109296838', '117739722725965559636', '110286587261352351537', '100717480898990671886', '111246604832230778260', '107966083689010962220', '106312867443069348446', '104124603672616052640', '104819005525677686100', '104698288677453165130', '100651669984520028497', '109046442675811528997', '103383678921229465207', '113858701146453101478', '106830050183071033644', '108497217883570868002', '101297850423506123818', '110517920317845671551', '112338245870906533942', '103459558342727553431', '104156068358949618442', '111348629195534256663'}
Community 5: {'107174603951133855584', '103851629838958886416', '117482642538384329281', '109187026428012507334', '103444239680531694442', '108581371748491713295', '107926169747487176608', '106138725016778836952', '106539835304510344813', '102227359845636175866', '118306516911843051370', '105629571973408918807', '101584402501141727748', '112957065719498086306', '103519655975029093996', '114979733565079457374', '101453783199083518841', '115876313538796651168', '107784212140893392732', '106289562822644692555', '118233603663991595473', '100941456844602408500', '107072783318215908213', '111599857664680730019', '108527329601014444443', '113580775903888579887', '101604821503873651608', '107859188684111526716', '117363884853969096109', '101329911725818815648', '109783184958092523823', '109537943042881567867', '111601274539518257372', '110496936159260440618', '113683207338912869760', '108970766621586435579', '113216425001363110392', '101985586791698653149', '101248132798651706167', '110631584319300141261', '111076953526963666185', '100620145262120669246', '105457786165459412407', '111114254477018072847', '102778563580121606331', '100372135633760991915', '112657790571355014050', '109938202835872364257', '102213927299417521191', '102189609154229152874', '108107439272887393780', '105740898373216863867', '107404242080797040590', '100271922489534236628', '113028930940007165058', '118153590571996026494', '107234826207633309420', '114386770841030106297', '101248054507015265353', '115635783790203857600'}
Best Community: {'107494727142915463790', '104402312334775525717', '109345865429707844168', '104142754390088344306', '105733948050774149627', '102512541586858673434', '100537772575114025993', '115604980276640526941', '106496967013882292185', '112915508949553064969', '111173171230586494613', '113641354088554800188', '101488008052888335356', '113532036700237936114', '106328387072777040158', '111625639286470334885', '110688474802292277786', '107625733670511152905', '115126222761735927257', '105699527508121484553', '109585716855239048243', '102299732908887751198', '105004335241251586694', '113210890654034986465', '116638958379604473194', '101426164395172997809', '115599866490385225976', '100351700763266493358', '104449572275071184198', '115366624923467413091', '109734221326849566494', '118049752810287995066', '109722189944089510033', '117131320813354732027', '100339934536910916220', '112246417337956018738', '114701420583282435406', '113989994225911747111', '111948878041168186917', '106018807891386594468', '104018805003766750720', '103168732943375073388', '102314486331710415915', '110292711527889111689', '107982618909749811163', '104286363725914412325', '108702243956983861993', '115446929412835725862', '105453317522683443187', '109306316429433053213', '112968305388793808815', '107589895345000267917', '108986482395975467331', '114822401067576646327', '113687916808174552540', '112266407581402154086', '104896537673470410734', '106073502505833617615', '108080970085621717187', '105161826956932743650', '105421360534824524100', '101494804320126833381', '117231658988287858700', '100188557028585168265', '112903919681703164454', '110255709702147736441', '104973761519912571719', '111161779241537203959', '103130481151838170197', '112016573893269448710', '104068455053275435149', '109861075689715799208', '103945298130957582851', '110107562591980573545', '102898672602346817738', '115221212267692323988', '102135222412427650111', '113965941618509981423', '102219475968800204884', '109965539845859227967', '100432553261066087651', '118321154050442304599', '104109276791574356880', '107101208158314368393', '117596712775912423303', '103637162978776725632', '112754494243408214081', '108270712126515524163', '103533326117556337218', '113998127376703212360', '117665613028757061169', '115121555137256496805', '110507996978242488651', '115558779859554883235', '104672614700283598130', '107126665887970596868', '117007141540857946331', '108588076582379537686', '115702306533209355625', '102712302351237374309', '111198710867103101505', '115234935608991455556', '117298449774201305386', '114197829616375652831', '110106586947414476573', '117353660349845808660', '115937548467085433876', '109434154213098606351', '100384356912885326394', '101494259043249553389', '111515517959993316206', '102606531566113441640', '109463198825262877115', '111937360718773567818', '117612501033972223750', '106306771055224212482', '103181848666629026653', '112724541174117620122', '110785984091746943149', '106036588985851683922', '114579585661410116649', '104338841195844391499', '103171533792240062855', '113518697815635920172', '108505558087127895508', '117299545239997513672', '102615863344410467759', '106215718640234782825', '115029186078239273995', '112366735963271550830', '112652642866960214917', '111499475665106694998', '115490868856377625184', '108997795964011637689', '106098286123499266853', '117059593834355077199', '113468937158877720503', '114092052797730247075', '113849626686834175214', '100613758025489484795', '105324761189549512199', '111455687366448679827', '115829854934725647908', '117596714593877854987', '117861338670157326726', '111066716680402389980', '108739566092524292248', '105089961750729001526', '113420422244530728570', '101171100798988839208', '116772708792764352748', '113515396686929218858', '109053233996223373700', '110899709105002539146', '117126068236790799917', '103941535737693167905', '104449102503528602799', '100622502206917250723', '101852559274654726533', '100251061855880028382', '101171090700644838416', '107672251758752795256', '105619612583444501317', '108632686412421589637', '104119608064940163872', '105574566053602019710', '116342937492510737097', '112992320954091012527', '102712928223774132007', '106677933862286361195', '103614891582957065589', '102780726906835902473', '118120125065490798361', '108935919227013334216', '115307003069691533470', '111041461103936222764', '111083308375001753987', '113388583425316146503', '117888860379667170672', '102381143844646970586', '100813229168405788654', '116293310171313567533', '114520316604615393902', '108131708344427352812', '112165530991102646166', '116208861859952939921', '102668364885894493476', '115314883913773500000', '103958441795544241153', '116795563095981607931', '102528718122061029071', '114930558215776389910', '104751214491331749866', '114255121290044538178', '116046131107486389598', '104317168426965250046', '112509132460368995491', '113186623583029971455', '108943292771761383631', '106984799703718932520', '103038287804535196503', '107852024581506537873', '108575961322871913333', '116166660014087779586', '108152252385291870699', '112011605270017123101', '100512649718649402368', '115940511630531767202', '102492519891813011260', '110221517713911114909', '114489896421633993927', '109200005789377605617', '117843617175570491498', '100266095938377120335', '115471815788264818704', '117958363368979774542', '109440206780255757543', '105496065140915063217', '113797508378819391794', '110556772494804817339', '113383623452399451554', '104028329852681318179', '112809556036676880852', '113381483153888636532', '108502670315441311095', '102533732658641069172', '104507233842972305384', '116593428335526725448', '110363820747461775831', '116942397717536105883', '110607703709700799337', '117603418437094018321', '100329511310247227785', '105489064367742025310', '113484544313014606167', '113946715443571015123', '112301869379652563135', '116581478643467215892', '103739686836221835119', '112878018292881361436', '102886708431831530206', '105233832085687188676', '106572298019121580582', '100974258168375166691', '116354326277822099288', '115516333681138986628', '108808011895597334215', '113141491911286106535', '116973390574320264137', '118422403820332162855', '115822767084216096089', '112364540357127470935', '109711721158856077787', '109407911046572406406', '104487223275138277820', '102130162677679828120', '112561860864020930009', '100474212268833373292', '111839842894509555034', '100969232856312001330', '110829304592314630889', '114424163811716070551', '111698095221811879818', '112859244767729828637', '102287469036218621421', '116588548596017884744', '100651621769656849775', '104021297424881076290', '117087402937869787406', '117413551943364608805', '105656674180913666200', '101766891673708330530', '110875483775097751219', '103030116155431184588', '102087257702756628549', '109980146256159069408', '115360504592641443999', '107023475113646570269', '110345156976813195439', '103912692648389663190', '113255240335204167235', '107747666102379771298', '107771181372242547518', '111776370104933282203', '113900617513663731605', '113881433443048137993', '108842492591796792953', '111112297042090413630', '113849854505123227374', '104538563453861838640', '117473477005177317943', '110592217550794732321', '102538905206519918173', '116196404021952428596', '108291790892450338168', '103170649990710136632', '112623464177403117558', '110139793201519692307', '108523962860904481095', '116909315521951049368', '109745932501512349659', '101600394231100833788', '116971095029701257834', '101861996949895074943', '115749701515945147883', '106268128704132883440', '109499411748464808418', '100294111140576581930', '108187577207608337534', '108759270777800830775', '109602109099036550366', '116792118744662189562', '115020920324331583957', '112269391908122006530', '103684974087620751394', '116825592843709362934', '112139555141728231689', '101267965565111472719', '110735228167430300745', '106659586779486287121', '114728245424310221692', '105275638908165446414', '116578863493864261470', '117283174365630308265', '116805285176805120365', '118297780429110098708', '109172813571934524948', '117504637174147176333', '109649264094810211637', '107794901657046516409', '106201641485302515655', '109342148209917802565', '115287640704144951783', '105474544524715065767', '107553326043454394306', '100675517463381490852', '113128191837051673707', '115135005437142391944', '108991279185317231933', '108182489610762944351', '113089996646628106127', '106382433884876652170', '109255183145564237493', '101885535290923906476', '111077535166060171805', '107313675531983974280', '113966331458433578834', '118011560178264222649', '101025269691961257466', '107207451447835171838', '114954712448394413847', '115085828077786850700', '102221942940843100503', '100186938589206311054', '103513848315989859608', '101881814901888951402', '112849818601770012364', '106310418483081420621', '104621204832216628958', '117812416337165490346', '106791138796860430554', '101397516006687049364', '101872015774361781592', '103741803705028185417', '103814888866762876902', '108167150134506196220', '111048918866742956374', '107379489464447013340', '105216491640488683417', '108960343477388551490', '116526029025767924065', '117344786984788205452', '103010542782798856787', '103618862132298404107', '111968283335829242217', '112353210404102902472', '112502423728898124419', '102744398904875314224', '113316148669723868015', '103666049006309089442', '102218502614021519543', '100976627641380642868', '100383526805651207186', '115604024842201016447', '109717489110482080481', '114567575685117086123', '108514209999217721881', '109327237933872366138', '106734796011714755852', '103263667465005102085', '101465854435804471513', '106922749016154628590', '107235245709526978427', '103068825327398983563', '110815228753558444774', '104857406109954440836', '114765309169217444723', '107446552448005649461', '107323726887023845557', '100961385622810058361', '115342746161292961463', '111548137920489485631', '116889019895385244422', '106680170153432597268', '107063456262289859086', '106395472331944190977', '107816151350992757485', '104511933936275853523', '101165143416503473580', '116845533997042633083', '108480231874301910354', '107789623338445963350', '103627647584203022329', '100855797004917861250', '114853458007065354930', '111562638514922412630', '114468593663912084118', '118328436599489401972', '106012471647090911983', '115330849532868630924', '111753692932315740237', '108881125597447085896', '108413597447248376486', '106273652560219611411', '108541235642523883716', '101252271355699391585', '102010353130079040444', '106532709318061274779', '107339337083351011695', '101292327494251658716', '116640923223897011110'}

Louvain Communities of EgoNet 118107045405823607895
Community 1: {'111297688846219234682', '116676102015840295235', '105976690877361609078', '102271438573646882972', '114051322401103919567', '102855346468155011104', '100605864222557374608', '104112700502285331526', '104969644294937516031', '108155571834093720799', '109897370131343108161', '118331204511078835845', '117224070183789845933', '113158814439512755352', '100621204114976031079', '109773123295959512976', '104392842026507204042', '111144389496315143142', '115305893755558429994', '103069435655954575455', '110800760184496212592', '117049109301535630849', '114754986248751812965', '108357794498664587643', '105246828264278441318', '112507886156998828584', '108693140064226726422', '112944457855043984127', '108601549475749028405', '105142373281531092539', '108497822730801871556', '103725469247964473316', '115961021629090154025', '107310017590537849030', '101384112455887732241', '114703714445331612880', '103476362678113473113', '106231013637442996083', '100915416592142928551', '101145980349117737014', '103486150650858067282', '102556150969875446067', '113211954743892121925', '114858496219143473247', '100372135633760991915', '111749793836380057642', '102518365620075109973', '107277383916180293265', '115535066186405182837', '117880813751228693103', '108189481625587435470', '117143431026798289437', '105426743019195604827', '115652070490968035511', '114480451015846480694', '102480306790909071914', '102854051892257849160', '103850296736302280410', '109128179703780508212', '112097913228945570211', '106096361729029699575', '110051435860595155587', '114559845119114226260', '106073502505833617615', '107660373411050226642', '111789696120701217069', '108376085312377399512', '102541295037745440355', '105236456655485859056', '116453244206808419869', '106713595342939258357', '110276541203447377476', '111839353280168477648', '100884676252145293797', '112751007849133298507', '115588307990520146154', '115658991092488583069', '114611629365777822843', '111557988109638065224', '115787262306412315842', '112027450030109652155', '108805430409141907975', '113482888883317009415', '113537711651274258466', '101763511463762540696', '102879192142617057652', '112314395542822752573', '113018487908388903194', '102377882249382281108', '113409086302056667844', '103885278007648446386', '113708981246606191092', '116799045993451756042', '103973455051678273599', '105072305864951447999', '115078520436774133103', '106880894893281296113', '105441682562241867424', '100733334063966339322', '107810397086335168494', '111474518545913990538', '117411960978758881653', '114195458404542931606', '113686253941057080055', '112786527053466874529', '104384618198413714249', '117624867943351457090', '102476152658204495450', '111236628099318163186', '116349651832473493936', '108542426628002931624', '112556402667625475320', '115062042809909264062', '106206424594758074492', '110721805765889618087', '106031725249629160824', '100714230299995389604', '103903167257655564644', '108201505701156348249', '115649601916827760715', '104789218149315172931', '103585898976472612049', '106289562822644692555', '100860607625286470922', '102970007293376301648', '111530414219710845688', '102409541521880756024', '116808380179140553260', '101417826671423354997', '106649978359921982022', '115217750279661462986', '101405498415675304905', '117300339930600767280', '113095675507703644541', '116498986729306656665', '109725757995563930722', '108581176656876634115', '118301727363923491343', '106467956464026331029', '113088290281047707931', '115530776534617554663', '103850326109556474629', '106870979209204208803', '113426663128872890250', '115746329005161350508', '102779421660447432075', '111065108889012087599', '116989633749715333475', '107182433686883691644', '108721466183079531495', '104374589530734162193', '108339432358899155056', '113799848912045378845', '107004843925454095805', '107483128324124814228', '100580578665046055694', '101403398734300997354', '118020706658509952016', '113464569897311842405', '103423025783649000949', '107567168414307124510', '113455290791279442483', '100771671272095499353', '116709653614049345818', '100700563258259618474', '118234772739219454819', '108258998494605140446', '103861212187604422719', '103102581616407808980', '106818933253447157570', '104763480255337902487', '104244566720530687874', '103092754229817039243', '112418826661775774031', '102929818741257862361', '108872036879266293791', '104543642566206158521', '113383813123340121401', '111402923913640845655', '103936423846831648729', '108184823388212202257', '117511955612172117914', '100964697179613756830', '102055758187040071892', '106369182367169177791', '108857235626334570902', '112912440438084031232', '111444111877686723741', '104646724943720968968', '102996026951276176445', '107362628080904735459', '103009042022920905686', '118029848541356213863', '105621708984911922911', '111134347280631145902', '113327376737622693535', '102388385704187037545', '100003761748305295041', '112380861379242468878', '104081052260915687825', '105281913314245593605', '111812922420264066965', '113751283404152316115', '109940597696193991152', '116119893029262153595', '111136943830266615679', '112710132005244395879', '105621403584928506108', '111080620052833032765', '113184091727451211493', '114135879980083602468', '110243713409398914612', '111898964366303457295', '100715328241636136414', '111109359761281857990', '109331277868417982438', '116293980128085708501', '100811733418406054662', '100081010984768669358', '102742333797709782764', '111232477386462053555', '102111571538090124895', '115716916626929869950', '113122231216156783325', '117831026683660485392', '117310042965407401917', '101348397943983026449', '104010138784147579120', '102768114339985212844', '103667678270324179713', '115538599673310186405', '109640203836414808931', '114667032191023848079', '106163325326985376730', '117235019552933435852', '105845861210914905032', '113141491911286106535', '104486088524980775787', '111900459905346803651', '109711721158856077787', '101360588077358765523', '116362607135656263968', '101670592154326222488', '100142397094908216555', '105948997573578625505', '104361409217313730040', '107242439334747430034', '108171852029000919673', '107366627473199328916', '116040565882702717981', '111552586981525651069', '107101215197232285494', '110573952887886961621', '113528999197148915535', '111240230493422963077', '110868918414122880310', '106365643912684301289', '100821934818331147512', '106533383112258363963', '104462449415595256664', '113138089506496430040', '100458658122301138710', '102126834369255384012', '100698222236890837642', '114023941350334024054', '114536133164105123829', '118428315130962489835', '111163922180711177542', '101605347171113567668', '107754205740456364800', '109117683049682245427', '114518097158797553283', '112721658936181743681', '114955415628566000965', '107778250194137329028', '104100048721044197927', '114753496995891786832', '101994279109931741031', '108282766766635868780', '106056053470710703420', '105140913779346435664', '117787078960837420932', '118249659762501201824', '113847951893881070422', '102241692612694148758', '106253152987149044626', '104423985805812651768', '109303894679037529650', '108207761965956936386', '114877890538065999741', '115603501102777898212', '117341108419076839731', '110322434906305176733', '111563321884369400602', '107784212140893392732', '108272312539386570504', '101793532287583914396', '107101517929405026245', '107742567767125793693', '103977761514480488970', '115106042459217297624', '103366463624361111353', '107639567933788693074', '114489504825638353488', '109031486518632696635', '117951052831974893962', '113483139244126583939', '108705174211639807508', '101418715115916934669', '105715110737693124434', '110334215429099763864', '111704031312891066566', '100765355746093664804', '114684641858182243566', '109095303593518604782', '112458714478562846013', '112174656193323553225', '111640352231056603475', '103244970994163799660', '113481459051519094986', '102573229848208163108', '104953130808780005932', '111236544646879948698', '116666017993062150925', '117738869066234923369', '109412400081371783885', '111293451245568790784', '108516651469213983964', '115754371967324227307', '106962741502202371434', '114614337701581469922', '116056645771775490363', '104836231516206450911', '100943369816102220478', '113704987612352192056', '101163289899816448462', '107143498371220240275', '109879692651335695102', '100160535056943446339', '116594199576805510790', '116238158286810832102', '104833564316573420990', '115313784962423522494', '117423126592221087041', '111668251246745875497', '113453874689606594539', '102473385896850739603', '108832212601102427191', '103761326311610249621', '100584544075742338361', '107888782363494114273', '104768621699284314998', '115143234371607892983', '104624105015519861681', '108834544234077411259', '115505611402423023943', '104660118116124484869', '102865263115020893218', '110556167739054682195', '115604087068942740438', '105661020346736383659', '106526737947007406923', '101011724459127748526', '106583854507271546949', '111028035383789880812', '100901649987363776394', '117435799714060817547', '116075808135192798838', '107308460013033893888', '109447323719942836871', '110168117080267015976', '101832053372535369591', '114756133594560951495', '115389971856894286101', '100095245926948995335', '116861525146403142301', '102254921263609226645', '115842543183877690316', '102349305007676725479', '101035196437264488455', '111522208161873916249', '117757565120070816446', '115058384974405026221', '116642857391974581307', '110548244043172681974', '118006757100260592462', '110142561668636219737', '101603746022982792137', '105867621710130583821', '101371617406438805612', '111574163861915313530', '100310420045060623543', '107880974706815787171', '102518571087840972824', '105604492968547001946', '102689221066933845512', '103905061867326815297', '114725410996879442582', '111582178452856649868', '108759901321068677229', '109330684746468207713', '115517258510977043443', '106567570642614609073', '106100228333803048110', '105182772231313806587', '107497619856021303759', '101059049290567215584', '106128938757046456047', '105875140491203787369', '101059416020608978287', '104957819454738884673', '113209788861124695757', '114972221948028006870', '103762604622232918121', '116011252490222413570', '107818533325248573164', '116204437472476177397', '108348790329129161183', '107454743276855372767', '109876879476302416523', '104016949609489688294', '109410701460407703403', '109222833364394410413', '102855077067539438780', '113944846007907559686', '116214152295449083654', '104316443417435189825', '101241183982769454084', '116565270544040241255', '100377493270775536948', '112781666749577736636', '113826445430709315059', '116385489466404408980', '103413026854903721037', '108629717769018996477', '100745493383537483255', '114369704013100203178', '104795229128236730576', '105336425684208963598', '116369071500456395369', '105943946099362806788', '115724883099396204735', '110982884491550289459', '117028515246889767151', '117680257783095584162', '112648442511407536596', '113024713286279331104', '112918551982780048638', '115571998474046088312', '114941990960699549036', '102429496922140195018', '102812929107875086928', '111720952354186227548', '116673938126812294472', '105950725902891401635', '115647026292417015088', '102510959683814539027', '108561684577945884751', '109332147378780297524', '102330918621228710441', '114153794734652455699', '109685346986918673416', '114437821607569957251', '107069913698089137475', '116469556577026921142', '103958889550659609890', '118142894411483692111', '116247667398036716276', '117809659264475717024', '105786329165387175660', '100771778865891544223', '116790754553761013184', '104464509525006371077', '100962871525684315897', '107826059696278341352', '111508640280561442081', '105167463152479291377', '109250372881394496935', '100490965950112173709', '112957708071337353347', '105186369823013844219', '106228492415376358972', '112789786566993332700', '101170454445449447714', '109795454744520479022', '101450409786547262412', '104577505941506079870', '117949314904695168818', '116114203998112257616', '111183544898345861350', '101089001571988994845', '103995835398448896940', '102759194596429227036', '117944539673553852609', '112661262066626464523', '110918518132080106257', '105228323457033543279', '112630132689918237462', '104485894541326791723', '103586615087663445665', '105001226804902733960', '103422959879607680904', '105256156026694816333', '113027837615023628132', '113795961594472514455', '106808060895318165506', '109761003239600501319', '111747361369716956345', '108421221875206061761', '115726547290844905726', '103787580098002291418', '117189268819713435859', '110965736426480668093', '117899532765065858463', '103678929192213568672', '103341235804505564047', '115066354200158420114', '117922865312170219650', '116927112288249522316', '103293516438378653921', '102876770831488383664', '103330025858600351508', '112726412224552205610', '110637824662938652781', '116995710336756123292', '105267656376269695918', '114368598178024988849', '102568229143155019755', '115775748957156460966', '101407724871953043125', '110505606367597611743', '118418436905562612953', '114338270254521043906', '112422638382072847469', '110287894893102510451', '105706178492556563330', '111975224012018194892', '101287476248475945303', '118255645714452180374', '101765565401131286712', '101987793376160781398', '116272754688583808397', '113097851206100618060', '113104944605785201866', '113795161884201937681', '102906377456782762333', '107948650868331033738', '110131072053414966623', '104927293172660676732', '115360471097759949621', '105551989431666449555', '101921878175528130492', '107646974851275524326', '106287024820950801335', '104519096412702496856', '111101690980834001635', '115496814324404797689', '111719717600282565141', '108545741131375046692', '106574152861326569253', '105901438974263061543', '111577466514119212961', '106724435919605472652', '107936425470990053856', '110159306642698690348', '113609633619983805215', '108307660370285174924', '106109321880683881539', '115490868856377625184', '118288288231292086627', '102140048318764498929', '117184181258526632678', '115733604509184177258', '102446706738071032208', '112402602902352711929', '110001339139979553061', '105647897153052672470', '107386249394822179765', '111973012122832065397', '112293904643489536931', '112016242624005519460', '113190229460560085138', '102871123574468799566', '110496766018154274341', '117792065524163931209', '100911941902836919434', '106144537664449988421', '108234504729950216883', '104268432506616866039', '101118135372426186940', '115842694607959851506', '110067153848300259494', '107054278065249979005', '101691152556611912102', '115676030745339909313', '107888675587755301954', '103024662999602309638', '113107253403679023320', '105852782594022510198', '107185271908509011656', '105591280483231306566', '117538315488626912884', '105237212888595777019', '108655621696213706147', '104992798176478601465', '116463663709609025380', '112553697913375929649', '116947923643606285942', '108604230015621645190', '116106774324737158094', '111346029664121783189', '115978949584209885559', '107469964602315974934', '103773583497308984430', '106250234179615025320', '115249860954021772424', '104498037034843830963', '112742552407526493404', '115770994163143043771', '113543880726286626830', '113460276440712687269', '114125900939049731990', '112941758576332332211', '105216293260831528847', '104380581224549491750', '105456040831865657362', '109086327304624846202', '112877008808055264939', '105547060999578080024', '107459220492917008623', '116947906726568301788', '102100900281506406178', '109646508394301470481', '117477043463673068423', '109718346641639271496', '113621734687034433968', '103052947271067730624', '106023534619957422616', '112879207422835329028', '113875929160127197425', '109187026428012507334', '102397482698742388526', '110711569791558072851', '106858712553994741004', '111812530852785178093', '102920063140431683002', '108086082459105093615', '115988196673262813908', '105736363132830887409', '109364225972033274255', '108501716828315561387', '116219534929662479848', '100471099783836970424', '117429320390907645600', '115851550445020159565', '110913165455688349197', '118058794383720702307', '108593579172981593233', '103011662826175289775', '110527332382139046457', '108284311476569620278', '106716642552326584995', '117994793060697905112', '105298740041987975283', '113669639330555286996', '118024986810229630989', '116078419948490503767', '108924136210249299218', '100873890882214603815', '105389364748387891649', '106322266355568739242', '115260307850276266872', '115204805503581947511', '109452949873475779897', '101401863073301251310', '106700825827431997607', '102365048688944919376', '110971010308065250763', '107404242080797040590', '101313088594783802183', '104342313215221608158', '109191735296746590369', '117900114250626860265', '113327352483856893805', '107542632252660344559', '105423752657290675302', '109746540495919889829', '100473530312870132359', '116696943168863559388', '104025209223525301213', '102873175118305865375', '103988783873572788367', '105168412948552978813', '110617635049394275212', '118308068668321612555', '115203451804146087587', '100185707560478368490', '109579042529957997981', '100002360555406652980', '114346437548419029581', '114056084994793924628', '117408889341288914294', '102306387852716965497', '100892612779426154375', '103924649151118687022', '105182282046745007103', '113642499966081941370', '117884476143887009277', '105769047231222924856', '104968519195250427239', '109507653225799908921', '104414006889440330710', '108296697406833275259', '115489093988888524022', '104772213693268114793', '115326733070213074894', '115403633126916585038', '114870378230990000604', '103929057358376044772', '102401792793807339556', '103488962975697693810', '116834613510435630346', '105873814765821560444', '105638035132192474170', '102456777374003067692', '114146479114949843175', '116474011754795363421', '110484413619969864191', '108347134468694009774', '113346146953541262098', '104376626976827590822', '114807257227149972393', '103916200279709797158', '103435446677848757188', '101378754357079914665', '115747079098314287243', '104282453580753584553', '113840433980723548429', '115714017024729175376', '101537299037980224795', '107543460658107759808', '108845250854229233264', '111262146038004038186', '111583897560006148626', '114908847203028092210', '113864703042782812265', '118048139271163842678', '104755336394155711931', '104214058376996487617', '106787788124127706441', '110484786042126682207', '106454856985227008272', '114714027943983816578', '104807117922089582088', '114482821185152912812', '101006001190131292549', '108424020240415471405', '114862801614068856338', '103983334866868909678', '109411893271096185362', '100771715351072186974', '117455582278970840221', '118122106764594800502', '109213135085178239952', '112750091316252656625', '110784099379805584044', '107561382312948155838', '113201167135747121041', '104891536829161719797', '113806608794238498289', '115221918388722303575', '108362403625671095081', '117939503803460916681', '103015102480776323640', '113293243153191384184', '102117093789730100872', '104293575644373367112', '111112809838472063992', '104987932455782713675', '115391090911429381573', '104296258582816548190', '106768305584550684330', '116008246625614132322', '111328059953568389453', '101367799604091052665', '117058794763073546749', '117957538062266531505', '115111902757485641613', '114991881344127682082', '100882994243294441475', '108524039352012210690', '105637423694027427561', '102536671372339390547', '103634361763300054269', '117460425558832405101', '100332328020771247613', '103236949470535942612', '116594169782616598727', '110065871079016978677', '109493490725321636855', '103698889037599783920', '110329781365538654444', '107979651021469607748', '111873853137122484021', '108586778317771300452', '106065832799617372150', '103905907245715507267', '104541959256591361052', '102470388231927849686', '109442127046441027978', '105529079362175017207', '100494264179552780611', '109689479493494802606', '103333192131344312115', '113240255242422536778', '107885387668324360261', '115952789937721911175', '101949100051085600234', '104155770298251438878', '114045800510530461940', '100472608497932134515', '115855823336434851063', '111747381273060022672', '111527173898597270110', '101915227705460638776', '113706772511531802205', '108369117087671819487', '116286873545653281906', '108096298177137829845', '108506119827765810454', '111324012410917919847', '109123727761757726835', '105640725776036778682', '114090565509079137915', '105669924377560628246', '106750429545700075110', '111641642825562524548', '107835459801687737830', '115605115857817552535', '105362990780240393762', '114801877818306839095', '115911712838090692746', '108621605232188649028', '115592016065916157642', '107668520185113566763', '104014153016377817626', '116318044389289937577', '104546878095894843869', '114786794106113206036', '107825558563631314330', '104401462206426890612', '102471833540021278727', '110901058555803377041', '100916411312405104962', '117804036587685325842', '101101086295080736193', '110071522590592019034'}
Community 2: {'111091089527727420853', '117891208395394989624', '100563608970924743954', '102961581170694777301', '105013190626551799067', '107608211978571081988', '106176762220398854458', '114274687956791581923', '112158988113590372338', '100974258168375166691', '102886392232266276524', '109930496207270853982', '110844984491497308385', '110067835153954222370', '104458801156000551882', '106379582664368757090', '116381176537835440497', '109960739367065180670', '114412901009927383270', '101892269165398528426', '105504700594522466800', '112754019546978412552', '107291158434082397409', '104405539079062799451', '102675315845072594179', '100000772955143706751', '105565257978663183206', '114326903094745477264', '114518415480710189551', '112859244767729828637', '100349743543849719885', '116145007461557829328', '113033063970700136349', '106297830782718462768', '109551304978938700721', '103325969492772452485', '117122165783749287103', '117613376450420237787', '116032490611047283168', '106952974709619007593', '111310990991240556038', '117614344165629501473', '113279811202875553906', '101989171644896834606', '110137716201533987775', '109018224010056005635', '103108014711273100895', '114618043230336563405', '107044824725885567955', '113047102292798770205', '115084795444005748714', '108961465858012263140', '111308930001632578779', '112946414169405920789', '100521671383026672718', '113756014567052941747', '106100296973968329853', '113164038788726940319', '102363561613892769562', '112460361944526645003', '107420422968461975442', '111660985235277530732', '107940613488592745009', '104450760987525660219', '105642583014202440803', '115020081348374234621', '117959241991509944145', '111979834690755246870', '107968315902726063582', '102545157386069758709', '101222125576635425546', '114979733565079457374', '106473332550730818968', '105822688186016123722', '111899272101870509760', '117119390669570908466', '107968787521028284191', '101628797717424992030', '110013884799897003049', '104183633860868026585', '107290525520765570919', '115684945308056329333', '102626129336565123728', '114848435876861502546', '109725449640114145911', '102385677016564126977', '115633010784894156982', '100972460481761964036', '100193529331792590881', '113899310637703974412', '112906687757895917077', '100712897463075952326', '112374836634096795698', '102371865054310418159', '112384222959153537467', '106086121009771648314', '101300494158572934944', '103103834116993607848', '102864606114046363292', '117283174365630308265', '100500197140377336562', '117207787193330201690', '106318111152683661692', '100045990726747178457', '115017188374689068228', '118297780429110098708', '109174551750397653742', '100282363024614552925', '116619759776643710411', '113096993341203159664', '115799682602079658835', '109646822745543008331', '113644330932700489210', '112048070794252585618', '118048268935203902371', '109315279515913622566', '109709900240523274422', '113922681403146970349', '107012628613463550514', '107264515902167457136', '117807373507435100906', '108894779805940659869', '101697775213251991950', '100021025784352405813', '106749254706410187997', '100192309543043196568', '109129654499278135352', '111459197718303171211', '114202150062599138446', '102712342580577775871', '101808745049679266637', '107858226132224039781', '114809488257853535663', '109163370142500370236', '113544226688149802325', '104192099372982491378', '107379489464447013340', '111431694377519332046', '103587936057336361014', '103965582964444715563', '113039797250175866560', '102943220293105257440', '100778660287081084062', '117344786984788205452', '115289783041335985128', '108494946397743992507', '101649892839036081330', '113180375618328351247', '114665422301747597133', '106195706787721857536', '114055975301837030490', '105911645591819082586', '115037313319624350537', '112118594569975443130', '113806314825655138485', '106527935338901270006', '104484219049883711215', '106665185918564754695', '102781222101344935450', '108353917312661123555', '102213356973647350299', '114522811866073303399', '113612142759476883204', '111538009015644508967', '106863471565584446254', '117622079686568464918', '101465854435804471513', '113801236315350503728', '101765416973555767821', '103233967921245494760', '114944613022287164933', '111742075541654959004', '114474252347218597235', '102364975200558201983', '111117743232778422510', '115455024457484679647', '113723385189467117257', '100300281975626912157', '109610954243983229925', '114416853067468694914', '110727249496967897430', '102002299339025067376', '113413631123566181546', '109351399938437494273', '116166660014087779586', '115005061882443895792', '117186458716523937136', '101794235393148527635', '109296185210191545499', '105931402039205614444', '118227397456300836229', '115655034901162574758', '101483533411566453214', '109201681846030076792', '111258992634637082336', '108293390474428640235', '104214490948543919580', '102615263566457101235', '113815496175227038563', '111326252849459841758', '101720949843787442951', '108546986114370631960', '115793765515193253189', '112254467169147545881', '100698655987920162334', '118254993345625377660', '107383157816966336384', '117737986831845620646'}
Community 3: {'108887316590037607278', '106756757396535914887', '118277029446893050108', '111692164559406908788', '115095042727023402691', '110067433342071570684', '115927302973552189234', '116476891107841579674', '108571081256210523807', '104273851304633009419', '101255055018541859826', '102122012748196677489', '108126733266740039694', '105196576634500671679', '106250709374824352211', '108266781071396472578', '118153481843054469599', '113070233173845123055', '111907628656302771734', '110886284995141821620', '103950094023645163151', '107283759386735058423', '108566597089115317071', '117259487643709788649', '107308030150766265895', '107923530149758134024', '100255102778442021897', '108153608672070881319', '118107549775305942832', '114121506957113347736', '111341805070244323186', '113397391314808142370', '105040058487223563352', '107608345508038384115', '111407952177634483703', '109861670739033511925', '111875665525715264606', '105809055044456717985', '105144963864645396987', '103358149125291535507', '101110860364385028530', '111336672090274821737', '106110392408709376416', '110875740738406507241', '104092000237927788352', '105351684180743907506', '105189643895783497154', '116576168813389390769', '106411046878239514059', '108759765810661286301', '108206883336506189685', '101487790832789414661', '102824945684239320585', '111269676982157660914', '118240196689173394609', '112019962874152071584', '114366128209662810917', '114897113274265449229', '117188114405410532586', '105965235464595868103', '101362277703012405211', '109146160837645362711', '102075339732581699600', '112955170148517351887', '103020313106929208651', '110954550871007449747', '109937254832182762603', '100378571023933038620', '101400591632349985897', '103522218014529209421', '116755735817743378338', '103488169034643528443', '100950689380752786392', '115087934048348184516', '109808157704804887611', '116742728953618819148', '115137849030052712728', '101418323239228547842', '103784452522248646050', '107037862233939639227', '118428285615500919023', '114849122005373371847', '101701583331414272733', '117736038773715729119', '117386527918823043677', '109674457704408200611', '102987934493562222561', '100578645684682196736', '108370572392474482357', '103770531046791651608', '113875421239479760863', '110836676689034486959', '110908684768781254229', '102993757684517674146', '114318095399599890649', '114661838207181976670', '108216446375195032439', '107315378322154900607', '103637162978776725632', '117945818785164608300', '106445486315230745362', '112647059413057784221', '111396558405739902158', '110507996978242488651', '116130450559157224410', '117298449774201305386', '116901019375284491764', '100629903269377636365', '106837574755355833243', '118427894834223700228', '114104634069486127920', '117122672562418213775', '107532423542613020631', '112903136003711459513', '100066449683863866414', '101417168957948378495', '105093931597417731651', '103104550840637315674', '116359813708750249878', '105471005522417570192', '112872110915392647061', '103434487080219673561', '110750649272369829619', '108463477874040157192', '110304553261974904093', '114814005044450108245', '116265828399001050082', '100706023242571286435', '112904779624068057533', '100382117243685711997', '108389970433410842831', '106542726714965514632', '111550669664395804651', '116458446436738032389', '117180993499031766213', '108463797808577861961', '106410732718450585351', '115581868711550786632', '115029186078239273995', '107652109540961048950', '107731547877245030605', '117247005461746670344', '105859070951290270749', '104531018148875607756', '100570943621691880802', '107895589408692326451', '104289213949175742145', '108534678587208921488', '105438216157712951149', '117668300375109028527', '100534386183913201789', '116867274133488266077', '107737537304272058329', '108729164162563480433', '115168269212597481080', '116581173626370476738', '104099184734680431870', '113553990186994535872', '115527615316927235156', '118074512749042983654', '114655967516290265502', '105740657860778555476', '112130961481629219718', '110881596680638137353', '104315334649820883128', '110402672419165178132', '113294483292678662316', '103774001600901781582', '115883675231924152819', '103694380365597972001', '110101984758324108622', '102444230004603405684', '102285179851236075328', '114436581393791266498', '101488480621820301423', '112011803154194471207', '101036203080597048769', '108310069137918407221', '100765251674484819933', '118380125497498826979', '105620619373987027172', '114620353253724833655', '117115170288798542654', '113459103713303498507', '117748891678858207829', '103633747545667002559', '101872163606007612800', '116819601264686093434', '110360784207374607325', '112714532704986500957', '100518625747153429809', '106932210405630123818', '107505007518380028872', '102440249973652568489', '114864817374051239842', '113406825594571237890', '112436171438064292142', '101360643544552502915', '103186885334039555657', '116892835165405541815', '103846236662061752112', '103274398541354707265', '114914896000469569508', '103744669593777813178', '116765138691892499850', '103468365043418765379', '112954151067260940064', '111048729592199491601', '102963825845722550731', '101411522670835290735', '100445600040262907080', '105885230746522882283', '113646756861816224572', '116252237668718986379', '100388133861755653491', '112105883502643929038', '111490745412217622127', '102353406400546786856', '107355720890672333961', '101828644068534620076', '113731364574881080312', '104018409979015812249', '104421522022168544419', '106332861329892738561', '108872478610415147462', '107032748541008652585', '100196790907630189606', '112974258424669667683', '109237657838387286677', '103752184467836846598', '102559162101591701099', '102863738190878180013', '116031612186591874612', '102306871493187334739', '107417903339410310061', '107801349623255426435', '112766860455754737817', '104666642804793612913', '101693014555125876600', '118107045405823607895', '109106846200379852622', '113520326117884248268', '104830019916494620908', '106764351587377041357', '106725926820845459123', '101548743359825944767', '106034090314001069671', '107870475679248109269', '106261497811000262754', '106048773058055537048', '118143461595971235245', '103727896585918252299', '104426233195987299152', '114441717350702263925', '101377128515177056129', '113148742025783782003', '108744126907748487983', '113677133587948721156', '105550186632453721513', '102656934497613163144', '116232115180783765801', '107753552544179958164', '110407384370530730875', '106994788622312472332', '102249182845295578962', '105402259468739080137', '116250201527009160504', '106895761306501470368', '114772370404010974598', '102359926085625474102', '117585652978868715783', '112374665739066603956', '100080304497199877330', '114096099683887759200', '112352597411965977411', '114352327674779556499', '107077924989967712602', '104214034036199536225', '108112557629934458248', '105295898001537556609', '102945130938297404430', '111648754688449664694', '105298519448418630579', '117461435525779663160', '112855886072993423409', '101562076353371698615', '104132226672783916964', '106962901393110437619', '107477909135631364885', '117556905742783806573', '109501436364165187027', '110787588731552125339', '105756423183388339722', '118398145764771774464', '110315430166117786232', '107317834415489961554', '102897998524188704114', '101670009911923895945', '115431995950171822892', '106064030310933105180', '103423896242493726696', '101872053529554144345', '111153455306955308157', '116944895639367062510', '117517314728318046357', '107104176813455812890', '111177586710520279671', '108250698633719035547', '116361225935365912721', '117426994241200828522', '109975347168733392720', '110156377665491013511', '106035140781573663323', '100771300110997138930', '112526370306593564662', '107643355522271518196', '104816524466988328946', '115909956209983539961', '114336117040058992572', '117998735553744736999', '100201301601263371349', '100744739062759166603', '114504022490238986254', '115163775579831251402', '110967003094003846420', '104010024638283114673', '101974291882028801639', '117509845915711759657', '110300801129798685547', '102499343453644564022', '110182875021467884817', '100599778127538523049', '101010880213993219787', '114685723668493364887', '112285036359380021410', '117216033587803854436', '112149526874675689376', '105613252741181373599', '100058643455900335517', '107383652618865802442', '103978918457106656392', '102518920220768175492', '107883340894483563915', '103110188755669663490', '113012020626169688172', '101522553878645610651', '110326740258342642328', '111349858851804350826', '111992863648838207509', '100186938589206311054', '103546273047856488913', '107179289042593463605', '108363014770938248139', '103839372439364311280', '113632805422998323682', '101732559467217160653', '104605182032046809800', '106827772898657086582', '103507381465701010401', '103490023659345682950', '110283364604261253002', '111887075096360352528', '113959435258864431393', '101218371689622128361', '100096528278409188670', '111335922737520302374', '114723350951535444562', '104704208945955537679', '115679589514937555999', '108917917927416072574', '104607825525972194062', '103225292456631554770', '101934437466204409602', '114596463182738407791', '112596973929133983413', '107066609145001672622', '114985013465037586756', '100623791536600553325', '100401708106444405523', '113285356124986797263', '115629548841310688016', '116815043422362494586', '106901350204433474063', '102607386869220645817', '110133480834100847635', '110423722073095835246', '106753049292900693083', '117494954219622059254', '102011100939418580380', '107738139256801286421', '118436909481674133865', '104156551898535769963', '110399185565600323230', '100835437473039397104', '117269268918083247282', '104973689929615532681', '108637075068178328561', '105202709512650456953', '111466009350720554720', '116250009958844646720', '105014028567141864192', '109744843287923813474', '116887436546769375688', '112493431048167821018', '103452050798248282778', '114750386879006583194', '100609200747033197938', '116555083386520176296', '105057743041374553915', '112807126566758001793', '115615319819630033507', '106012481736638686979', '118195416779348475003', '104776433680664140552', '112585341928813448740', '104666354485189196501', '100578202127502407103', '107525588207391969782', '101520511204797359099', '117278168886020265135', '109686654346023962238', '105562392993385643663', '101520077969854966120', '102610444632698510215', '104000421967098138420', '110834083330330746172', '105828335594316527207', '102447055528197599845', '114238848179918960497', '105637155712287876601', '100653894902215465979', '104245209766042196395', '111045518950648031219', '108935348330187170024', '112745347790923628984', '101997434473364451852', '107074163618306062768', '106770610787796260587', '108333665110294798935', '103685740157136493702', '107231086341030547456', '103756270273477291381', '106076219881946713098', '116984669804618209616', '111005008195348738620', '101188292687117521197', '102690447793240190249', '116935226633911874035', '104819901401112366043', '115602760308324028776', '114820480752300993890', '114722362043662276565', '108798698997127107581', '112928796157153543442', '113984375822215033202', '104746530192334374233', '113641354088554800188', '105682917929029880806', '112172895831966524738', '116167163116459201233', '105096798346946472808', '113922813642717659153', '115260129877170686825', '101705985546803067013', '103057843502350710989', '116863730677849618682', '109248359293282070509', '115421207682636992677', '105168276680128924513', '108584940222628465190', '114620193125290475654', '101222342989976293859', '115163657769014504396', '106963775238138670657', '115165205120331393982', '104279107049574225556', '103296595669319654320', '108847139189923294371', '117537950835725238331', '103127067335628413730', '111913294158600874183', '101016488549547001886', '112373237775458072002', '118051183526789336023', '115663008129171661919', '110304595006233532529', '113387268363968644500', '109925450421274121160', '109121803732047023565', '103568848235332346301', '109420348171622152415', '105626925721558847542', '103243515693467499824', '108065043123202343467', '103464935474818028904', '110912055212888170698', '109149494504964305881', '111441375914865949700', '112099671655881647810', '100005809427652429580', '116463032252840790333', '111418474601985915957', '110295844480825936400', '117012193154182916005', '117792005919159036202', '103918782714606587310', '100975618421409141430', '114427619140485635394', '106624908229691820592', '108751138108005469822', '108927164035015492479', '117128672203954655256', '116443492637968772227', '100276638705004937355', '102942463804709310436', '107554392786806012173', '100068145730356623940', '108330746070996824391', '102795882537271964266', '116111933876321104717', '116649170286583371520', '107329843700868576110', '112998749243338946843', '107209462033174239404', '105412422659562771828', '116522624183998756141', '100565437335936094929', '108422684832218558403', '104672614700283598130', '101034415958781062784', '113456203738507213575', '108331961243127940286', '100994657620984789503', '110508446117310549309', '106369077103680701108', '116595418571322057411', '116099277207398914278', '101874080810183022526', '110028299208161392654', '112247203025001649619', '116690953875157042000', '107946961078943370483', '107691163524835429537', '104817633668230013853', '103429825907085420701', '116517133615208841339', '103575399676599635897', '111523808203160874141', '104359568476968412848', '104382821820488735558', '115910676552586250784', '107188788248244608953', '110723161182814777871', '103372431688184929899', '105559429410378216754', '110645922162081253079', '111287572135984976332', '100163238332537499583', '117585400746388462491', '103471889304210930424', '116244751484241690077', '102550233838963881385', '113479597774861280964', '101423842955540149014', '112402806942990334873', '107983336737284521544', '113882100233272026653', '109705341157728078964', '109838381960700452907', '105237921709043602191', '116524473777969007095', '114437493840725182500', '113802344619945542252', '111652714412182855492', '107570961829991066907', '115498770227010521586', '106237697616959334118', '104356957682366570813', '115927870648363036195', '103442974084244428091', '110296961334162565272', '112659399561175810227', '113533502402180936683', '103354880948309691929', '113615559210024038819', '100413801581310316369', '117544103486117718688', '106225038734843308048', '118079889028052392889', '102915603361997652174', '112089326023442890813', '113627579169925955646', '107510365408888413417', '113491802750170725132', '115396639452469509832', '103197072119870191855', '111924432457519468020', '113965033696245622569', '110429769116505259644', '101721451827815664563', '114899522425082849357', '113180496774797510373', '105769451938422053822', '116411437512689977320', '101735330178818807124', '114103669757120530833', '110292076036271913623', '106043731707156748922', '108707792928475298183', '100309650424237078484', '100872876956795042185', '116429435802395645595', '107985237530390893631', '110384859728784051439', '116691136217597661821', '101127358291830015133', '100337583583132526767', '103495900583414791676', '102103300552492613781', '112022440956088651301', '116147512237797116756', '116892274923495893157', '103270374002752936491', '117552698816637823490', '100252339540386672464', '103140405718724149855', '115045409965027013717', '100329698645326486178', '105343629904718099625', '113949487993863767866', '116660410556163393541', '105034220628990195204', '109210556273985402669', '100980979287274593007', '106674561143088442070', '107689257606548570571', '107400386031872110984', '113238407296509200124', '114661304445626184013', '101775378004698597747', '102800371371135622969', '113807532026808117133', '105452679113309337104', '115741881225839706441', '102414921526172028172', '105508660898837488930', '103895106281619011477', '108396995968821132401', '116617844200815491529', '104154510648876236073', '116706195717971759521', '102931842347172937595', '112786890450122407289', '101952863053692958836', '104947278653644467788', '104610015901686190830', '117384587111087743652', '104620557066160322663', '114199293941855846544', '103701844818469254716', '113935808109821908050', '105293886456793645422', '102228138880231589720', '118147897097670149361', '109492294456525377684', '108246157440293603595', '112466289687791451467', '112474367030933587196', '104637506708416544412', '104346914909663775617', '103458647163810854702', '106120339174989120480', '105514142573871707546', '111314660885088440303', '116275857019696190172', '115898638478890997015', '111234552344495202201', '116426018234598080075', '103850965735871121071', '112528604568167140988', '110846410886522908410', '109602717285147402581', '104312101745348855122', '106618717445377547837', '100802098332606875346', '101363420670773470622', '104437199009265167412', '114458685740868503841', '109236580877596744501', '102418039386311028147', '114164741304215712201', '105211506368416369478', '108053790970132797060', '102978065556965822952', '113386187792732612376', '105150138107521642010', '109414221937352781519', '110241306564912101634', '103382133892057015635', '112211961703142420817', '112960201172167885583', '104674523653618976713', '101265287919160637317', '102835412008947310524', '106093315121102404734', '115104069646389182428', '112460462800157435585', '105264947160217806145', '108559055101768603660', '111064279321629547930', '111816110574238534692', '112829241725212945302', '110314117509003498873', '106392362777471211481', '104950390394311878153', '108157030836771255408', '117044063697470262714', '110164187855514316489', '110723624163518357018', '112292414198276054098', '103902837507333573775', '110023904208758175742', '112033282161498094504', '112622420762576522129', '115390855161234949409', '108609776419787341388', '105026630819824298577', '101560679851359535742', '107454875931047016644', '117883496831203338163', '115706692326163380334', '110807210088636589251', '108358355482390234713', '113192115815282097125', '107603571889890796149', '117359612091376902618', '109550312352993731394', '103158447944286724575', '117835064414371041802', '103753246154433626793', '104799160568450312846', '103999637259487452487', '100163155057122890291', '106247049058205465701', '104477868153171626760', '105851080457064708898', '114063621336261903092', '106623569435881634966', '103547101416445539717', '109330515781864267219', '117231743960522064512', '102429033904627798413', '106127128773990697459', '102861375672472314612', '115093655219784901392', '104796252234667238720', '105470950521030030829', '112835315010616085809', '107673209521796924541', '106330487416823424328', '114574946773548399121', '103518543573240540885', '113435302917113419960', '106074369342418466880', '104545705293219420453', '101517702834173981462', '104449483355923550870', '104108328330202120315', '116239940073350846016', '106488424923710466886', '110240619785255499063', '109545513681683958686', '117580707036980580593', '102261841067368758247', '109786487088662225572', '102073747889450351618', '113254447794337890125', '106091062692012637006', '113446184053786049338', '101894017746711407041', '111097198237997918386', '110210867243929014459', '101799533248453553128', '114737380666798321176', '109513130879037590733', '108124151155992917028', '112404075585964695421', '107790367245887975375', '100661914783868753304', '100412213386584648247', '109050735453225493965', '115686461214690249154', '101127855437994948867', '109468588397239446392', '108762671490698771511', '113409763196043464003', '111283355559632014685', '113772620663265751526', '111434081641654028537', '100768035340494924632', '118103244481533188445', '114503718663848433100', '111525227247938797069', '112240370345372758525', '109084698270530348428', '111988916680313318873', '101904002149716558203', '114399570243387179751', '114021871725450810893', '102552390342954072386', '116466745743153301499', '100064147221397944462', '108925095650421163240', '106733768004862090290', '109501703581947740465', '116570597784626887840', '107948437960557548607', '111124930081935539248', '108667968580174698698', '115392951895946183772', '108958286033422167638', '100762929605976411921', '114631096572515710476', '110699890044237084645', '111796773894504400652', '104525492727903017665', '104059132776588875365', '112050047245724905079', '117282311721013297588', '118167844798373521994', '100269984923783138938', '117676292483802154814', '102134343881376040393', '101748883639096024591', '116256692848901876844', '100157399523094650315', '107748994758051895882', '113920526057233976680', '111157851933802239172', '101775119471172064620', '114919376309009531550', '103040583170195080045', '117683342111882996354', '107874114351340563166', '106327011702418086602', '118076164907023431365', '114528413975903780730', '116540137110787894216', '113384557845941391470', '115864772802672600481', '112847316090042624897', '114152035007324749666', '117383716313942655343', '101259151613606315676', '100150217757439777553', '102295892244191044193', '105377628474938621200', '109121643567830483591', '108340896545132368254', '115895618107840963551'}
Community 4: {'101206502613384107619', '102642832328991846092', '112365820314826728239', '110709982674874192300', '110257628390025868486', '118068221752550925627', '114428401458138152037', '109787685148095217484', '109385188178546641401', '109280367858317936895', '115765806106805622953', '117241011389217784305', '102863569382913847828', '103508440520148821354', '106134698015433082297', '114256246687528755253', '117245054937343378617', '107781760773053016090', '109598700629535139005', '110389676949022465024', '115028193807457522413', '116037095013339186742', '101456322606243525384', '111510015637321586823', '105920130412372989728', '114535734825389534681', '115592034719992693959', '102786971434579204422', '101357807332902480720', '110256759364022125433', '115325407888997573486', '106671084931094301510', '102703978130406483278', '116444778202433288162', '118203006950870376120', '115526648727451857630', '116022830758088572242', '111863743690964262684', '108426976618285933117', '109671560761976270528', '102393079978161767132', '110544037180447481256', '106378908153930162657', '104472648636466535471', '101683039849030383098', '105792165101564727726', '103471751605471219081', '112267968031995007637', '110500395128979271391', '115641413807398447170', '114569207739733336492', '111849853958320770663', '117889637050142878732', '103815906667477097695', '105434340493779534137', '106403770626375562373', '110027345274806935499', '108544691739607569495', '115378488194467614098', '114718665448207358744', '102522790344277499713', '112448675882451236231', '106249960280468027811', '102072064821745107409', '109344447419175414852', '102645532385014073041', '106326016563064087536', '108500933169069069530', '110002405786613212411', '114822593626242568949', '115053975672650597157', '107174580285242008617', '117490630809806732314', '100194253414973156422', '103739434091749997009', '102939866041006166839', '107195441476577339421', '108647613919454000903', '109904616233131659643', '103958441795544241153', '102821415147464318372', '103310218316548260893', '109214853759461755510', '107138096600153587623', '107172040488636661137', '108674726803457638303', '114411140288055675409', '106951987054299687346', '116776468683382365028', '109692398289870186007', '101450717666048201249', '104253374162112952095', '107520321028553077507', '108303074811335210925', '115471815788264818704', '108324852458814017913', '100262384945138917360', '112302328634546793979', '100695700738665614582', '103492589543434845320', '107661942391405918247', '108682670967736508719', '111378435554188237250', '115453857428295591317', '106851256198255577581', '103632164166169075556', '100407776587709985039', '104545778992030182138', '108375155964628554861', '113767546761666828586', '109876209882577704554', '107500101027392165863', '112879841470105543012', '114072878373860296419', '105167657448375010036', '108155601641892969907', '103507192664487181495', '106313493644744559056', '106218812092106814850', '113474724194789017285', '101106684057058130624', '114122515075685499659', '103332931156452078238', '115599601881370161913', '111720636981573848468', '100324543938384912897', '108813250463984847327', '115270351257026959175', '107520568772200234207', '106798642791378451894', '110514503441802354869', '118053889561721153202', '100845686758241484821', '118043858711426094400', '113411651446816733455', '100571895408826641263', '101482635367518865545', '109688018031970881896', '110962949352937565678', '108387669730511244394', '110282828938803516298', '111734318250372866573', '110922307451325357596', '106248619108218109426', '100888456528983634308', '106265316827872063604', '104715046510370920811', '103894566409656204843', '111929386215091912977', '106790499891431007378', '114991166958782929792', '102276001334523769733', '110756997972255945127', '108358915961072417897', '113919320385211951812', '109133024978518914619', '117511780017798682207', '114131994632283189651', '100726752818347059814', '114430879686433947818', '113705471360254379037', '117131018399815646628', '113461057494376108023', '110211437140732101291', '115307986608775128558', '104085765174770275852', '117946466323962104874', '108991211750301683447', '102391821649472776678', '114590717897717187478', '115949235079382739229', '102781315536557513596', '102122033282907873402', '115069565990933029289', '111581285399837759269', '105165289722561068087', '101665655926817231342', '102674542783172778960', '111318868687919410142', '112202916777570498940', '111622474605209671162', '106815464003881331207', '110715095928031808700', '116230050632137216206', '108001281996021495845', '104577808504539973696', '105024011921606888854', '107919746828184942218', '110323990716948783431', '115351571937073769049', '111205337489236155801', '113913583772851182259', '115780416069519180112', '115524111646752962689', '111418354339247945304', '103892944173481294432', '110823652171439094038', '101985244607221445028', '116420972797550666132', '114766624521543225421', '107108957512542382463', '108490791507069410168', '106485091199453413826', '108055614721877801899', '104627659572157637639', '103978944717872769481', '118369566337189424987', '106252443077985276411', '105216491640488683417', '117021840285158672744', '104145159340267405219', '110192976726456451625', '103276466601625146310', '115513963413051596167', '102838358536891534894', '113862570352969863882', '102227119889071109746', '100679131071077043250', '107436202463778466399', '103049373110021341267', '105046530334806680420', '110457665321425603325', '113836156536300987517', '115747763648027263942', '102015794901425980171', '109240065582501674240', '117837087717448638021', '107180995614531146994', '107632266259008580069', '113235977348513117936', '101325689650452213569', '112720732129213592031', '115277354774512813305', '107736922941118705751', '105210587644650065846', '117172748046831321270', '104517282954427853888', '106132380139110554276', '114468593663912084118', '112515944562734885900', '106193116821624641589', '110169221310171686233', '113271433504869081420', '118359984080122421385', '114132462785297040196', '105852800056956495759', '109015404841945658446', '113326831198780032740', '112520925289566656234', '105486927159495363837', '108069705841970462959', '105980789772649176836', '109635023756287333968', '116376299637999803639', '108472256021542419936', '115176200987385683342', '113849728411118888973', '115667663268380023374', '108594512957979246960', '117800480771792525839', '117675164112614703713', '115841625582720575875', '117609441101434958798', '116773844805227192821', '103163712079389164338', '116650745275442197132', '115956363612512643809', '108718133891016347255', '116319627715742877481', '110028623417333097448', '110704030854263574087', '105345566147236475531', '106281380030295054166', '111717910782818837129', '114556892277040703854', '117804484225868285854', '111849478427665530528', '114239101215094182222', '117649842818510463453', '110838162887713508997', '115594723665448665415', '104351573029221962709', '108204355971789246926', '115031545528816193813', '114365566709887894898', '113552372559200704188', '117254630097071533247', '103857459148999991693', '112493672475808051639', '117703423505001326711', '107474561164609530463', '110168347438576033410', '113992720876352031172', '106028569665227723037', '117906457028030551127', '108196241555610157415', '104660764126247168270', '115766444879111468623', '103437369723516424400', '106957263843928791130', '114153859732710523651', '110112795725092334951', '111035620299028085766', '117543103241160400158', '114275643262389643721', '109007802493662296517', '109987204938145476054', '105080657488926892600', '101740258319953096066', '114655329471228854758', '116254680175588639092', '105284241644114263194', '111759924371065234455', '107599936229942032070', '114245534338887342709', '113750152701883917398', '108583368340157326167', '118269406419478362896', '103390491619249993911', '110438090236923626992', '112180970871106507465', '104336738801506671946', '113252623131591435586', '109421736046086266851', '106875108203992592031', '100161976589063044056', '106134615394478313556', '113586459466552877584', '110544677856427522384', '105852091541941306153', '116010686988761119371', '115049735125827192227', '103503130802791609321', '110604655857327850293', '111637781336462698926', '106407292572142932910', '115002587825504375275', '117500656086463020987', '101221104868305787960', '103546981939364425829', '115288498861240787143', '115289042027463454133', '105489065160959389675', '110262685796612839062', '103913979434037185388', '113041693148251706037', '115239440745127890908', '106916876255199541392', '117153676194315757678', '101180112918691810491', '102669161318133687366', '101270841777853012207', '108010714472286910190', '103527583204714475293', '107313393562916069174', '112027643833060705750', '103557102007464977255', '109171335017554837327', '109171454554177779280', '107098955698070709587', '105276365608720077250', '117697379995591819341', '100361949039281004073', '116779478651445155548', '101961673975811823695', '101570646809005971534', '109508356501098742503', '116649584083709634987', '111633698729201578344', '110497909365801371707', '109653829711661354959', '101272181017626995089', '101291254282326702480', '102376883889660461167', '101844918023535804783', '100083368149341064897', '110417116927521392783', '100037428816683405361', '100790282343650757296', '108465230504446641814', '105138156255735081209', '100987261809333853984', '103346465651662997626', '114385776048024218999', '102153882497730102303', '114164806141768968335', '112571861198757001338', '101498522022101542583', '112145951608161981842', '111260338302225430832', '111807011668940200355', '117291172056174753422', '108042851508742333574', '106979953766473365245', '113691196316356267588', '114894421225845723637', '109741494581273564467', '107596547507994105178', '115808218248001986821', '110814750979235028561', '100969232856312001330', '114283083537558532185', '103893894122992806546', '117821308943637413847', '113800404063575133001', '102159532354713518142', '114388232268378900159', '102556276765972971683', '110589462867223710090', '109750447779094700268', '101810721211584224085', '113718269858549593079', '113093321198553494153', '116551430990291119287', '107771181372242547518', '116478618781099942956', '106419400577988151299', '115799841107389567916', '114149244147315691629', '108538588905235310311', '112538582868328901418', '117611242424842063021', '103076920821986804655', '114055858947998207191', '113720609762473463074', '109602109099036550366', '114442461145816745955', '101010784922652715012', '115150834179663036977', '114324572122696049251', '118251361769321107723', '113883274535945670622', '115047839720098318862', '105772482841580574992', '114522547167183191785', '102349987850176560760', '106433089606067840236', '110779059759702655000', '110607854570815877398', '101114916230709970267', '106085438545956034717', '104265353587248118829', '117079620867048812652', '111921583367634816674', '108400276125913558601', '107970467091989551036', '106202342569754356867', '108415186676188153531', '116614103204687068570', '113690230649239145438', '104512462041446244532', '115574618126479084852', '107191836514147826474', '118258847595972123892', '111903356769415643161', '110300292909771695676', '103657273522882559635', '101233858111590883332', '106736592653655008454', '112898817929313530782', '110391914546305008874', '114992496631413071283', '105017289267741004914', '109063483052735719193', '113564907805644842158', '109113699920014946452', '104290818898110908410', '104999484036614399046', '113127671633590034991', '101950208653618672521', '115854718917136776953', '114568014800313483795', '102000765766827851350', '107697215815273852420', '116929574636168979614', '108424521125473538759', '113280371971686893505', '112681927513600948421', '112776394804213099516', '114007962711375573185', '107491769176599437622', '113179211090818435547', '106306945062511966344', '101700774683735545259', '118130821798863756144', '103548172913954354631', '103526484929526914389', '114939534110388890649', '106999614238373529583', '105682471098412724109', '100391695388726523283', '106863280892050114693', '111362418267183364740', '105259605759214369744', '113655172134977650732', '104914829730501706316', '105840714957348600123', '100842802922063879666', '113210096909000624337', '117733415952407247601', '105650233136363118191', '113165622704612371637', '114480095884024488890', '111299594167177765377', '114011106058583227627', '104700304620983553940', '106795916614100659420', '111821994480810693219', '108758454758037622806', '111819013611762065228', '115170278877753972135', '108751100866531521731', '113991510450146807422'}
Best Community: {'108887316590037607278', '106756757396535914887', '118277029446893050108', '111692164559406908788', '115095042727023402691', '110067433342071570684', '115927302973552189234', '116476891107841579674', '108571081256210523807', '104273851304633009419', '101255055018541859826', '102122012748196677489', '108126733266740039694', '105196576634500671679', '106250709374824352211', '108266781071396472578', '118153481843054469599', '113070233173845123055', '111907628656302771734', '110886284995141821620', '103950094023645163151', '107283759386735058423', '108566597089115317071', '117259487643709788649', '107308030150766265895', '107923530149758134024', '100255102778442021897', '108153608672070881319', '118107549775305942832', '114121506957113347736', '111341805070244323186', '113397391314808142370', '105040058487223563352', '107608345508038384115', '111407952177634483703', '109861670739033511925', '111875665525715264606', '105809055044456717985', '105144963864645396987', '103358149125291535507', '101110860364385028530', '111336672090274821737', '106110392408709376416', '110875740738406507241', '104092000237927788352', '105351684180743907506', '105189643895783497154', '116576168813389390769', '106411046878239514059', '108759765810661286301', '108206883336506189685', '101487790832789414661', '102824945684239320585', '111269676982157660914', '118240196689173394609', '112019962874152071584', '114366128209662810917', '114897113274265449229', '117188114405410532586', '105965235464595868103', '101362277703012405211', '109146160837645362711', '102075339732581699600', '112955170148517351887', '103020313106929208651', '110954550871007449747', '109937254832182762603', '100378571023933038620', '101400591632349985897', '103522218014529209421', '116755735817743378338', '103488169034643528443', '100950689380752786392', '115087934048348184516', '109808157704804887611', '116742728953618819148', '115137849030052712728', '101418323239228547842', '103784452522248646050', '107037862233939639227', '118428285615500919023', '114849122005373371847', '101701583331414272733', '117736038773715729119', '117386527918823043677', '109674457704408200611', '102987934493562222561', '100578645684682196736', '108370572392474482357', '103770531046791651608', '113875421239479760863', '110836676689034486959', '110908684768781254229', '102993757684517674146', '114318095399599890649', '114661838207181976670', '108216446375195032439', '107315378322154900607', '103637162978776725632', '117945818785164608300', '106445486315230745362', '112647059413057784221', '111396558405739902158', '110507996978242488651', '116130450559157224410', '117298449774201305386', '116901019375284491764', '100629903269377636365', '106837574755355833243', '118427894834223700228', '114104634069486127920', '117122672562418213775', '107532423542613020631', '112903136003711459513', '100066449683863866414', '101417168957948378495', '105093931597417731651', '103104550840637315674', '116359813708750249878', '105471005522417570192', '112872110915392647061', '103434487080219673561', '110750649272369829619', '108463477874040157192', '110304553261974904093', '114814005044450108245', '116265828399001050082', '100706023242571286435', '112904779624068057533', '100382117243685711997', '108389970433410842831', '106542726714965514632', '111550669664395804651', '116458446436738032389', '117180993499031766213', '108463797808577861961', '106410732718450585351', '115581868711550786632', '115029186078239273995', '107652109540961048950', '107731547877245030605', '117247005461746670344', '105859070951290270749', '104531018148875607756', '100570943621691880802', '107895589408692326451', '104289213949175742145', '108534678587208921488', '105438216157712951149', '117668300375109028527', '100534386183913201789', '116867274133488266077', '107737537304272058329', '108729164162563480433', '115168269212597481080', '116581173626370476738', '104099184734680431870', '113553990186994535872', '115527615316927235156', '118074512749042983654', '114655967516290265502', '105740657860778555476', '112130961481629219718', '110881596680638137353', '104315334649820883128', '110402672419165178132', '113294483292678662316', '103774001600901781582', '115883675231924152819', '103694380365597972001', '110101984758324108622', '102444230004603405684', '102285179851236075328', '114436581393791266498', '101488480621820301423', '112011803154194471207', '101036203080597048769', '108310069137918407221', '100765251674484819933', '118380125497498826979', '105620619373987027172', '114620353253724833655', '117115170288798542654', '113459103713303498507', '117748891678858207829', '103633747545667002559', '101872163606007612800', '116819601264686093434', '110360784207374607325', '112714532704986500957', '100518625747153429809', '106932210405630123818', '107505007518380028872', '102440249973652568489', '114864817374051239842', '113406825594571237890', '112436171438064292142', '101360643544552502915', '103186885334039555657', '116892835165405541815', '103846236662061752112', '103274398541354707265', '114914896000469569508', '103744669593777813178', '116765138691892499850', '103468365043418765379', '112954151067260940064', '111048729592199491601', '102963825845722550731', '101411522670835290735', '100445600040262907080', '105885230746522882283', '113646756861816224572', '116252237668718986379', '100388133861755653491', '112105883502643929038', '111490745412217622127', '102353406400546786856', '107355720890672333961', '101828644068534620076', '113731364574881080312', '104018409979015812249', '104421522022168544419', '106332861329892738561', '108872478610415147462', '107032748541008652585', '100196790907630189606', '112974258424669667683', '109237657838387286677', '103752184467836846598', '102559162101591701099', '102863738190878180013', '116031612186591874612', '102306871493187334739', '107417903339410310061', '107801349623255426435', '112766860455754737817', '104666642804793612913', '101693014555125876600', '118107045405823607895', '109106846200379852622', '113520326117884248268', '104830019916494620908', '106764351587377041357', '106725926820845459123', '101548743359825944767', '106034090314001069671', '107870475679248109269', '106261497811000262754', '106048773058055537048', '118143461595971235245', '103727896585918252299', '104426233195987299152', '114441717350702263925', '101377128515177056129', '113148742025783782003', '108744126907748487983', '113677133587948721156', '105550186632453721513', '102656934497613163144', '116232115180783765801', '107753552544179958164', '110407384370530730875', '106994788622312472332', '102249182845295578962', '105402259468739080137', '116250201527009160504', '106895761306501470368', '114772370404010974598', '102359926085625474102', '117585652978868715783', '112374665739066603956', '100080304497199877330', '114096099683887759200', '112352597411965977411', '114352327674779556499', '107077924989967712602', '104214034036199536225', '108112557629934458248', '105295898001537556609', '102945130938297404430', '111648754688449664694', '105298519448418630579', '117461435525779663160', '112855886072993423409', '101562076353371698615', '104132226672783916964', '106962901393110437619', '107477909135631364885', '117556905742783806573', '109501436364165187027', '110787588731552125339', '105756423183388339722', '118398145764771774464', '110315430166117786232', '107317834415489961554', '102897998524188704114', '101670009911923895945', '115431995950171822892', '106064030310933105180', '103423896242493726696', '101872053529554144345', '111153455306955308157', '116944895639367062510', '117517314728318046357', '107104176813455812890', '111177586710520279671', '108250698633719035547', '116361225935365912721', '117426994241200828522', '109975347168733392720', '110156377665491013511', '106035140781573663323', '100771300110997138930', '112526370306593564662', '107643355522271518196', '104816524466988328946', '115909956209983539961', '114336117040058992572', '117998735553744736999', '100201301601263371349', '100744739062759166603', '114504022490238986254', '115163775579831251402', '110967003094003846420', '104010024638283114673', '101974291882028801639', '117509845915711759657', '110300801129798685547', '102499343453644564022', '110182875021467884817', '100599778127538523049', '101010880213993219787', '114685723668493364887', '112285036359380021410', '117216033587803854436', '112149526874675689376', '105613252741181373599', '100058643455900335517', '107383652618865802442', '103978918457106656392', '102518920220768175492', '107883340894483563915', '103110188755669663490', '113012020626169688172', '101522553878645610651', '110326740258342642328', '111349858851804350826', '111992863648838207509', '100186938589206311054', '103546273047856488913', '107179289042593463605', '108363014770938248139', '103839372439364311280', '113632805422998323682', '101732559467217160653', '104605182032046809800', '106827772898657086582', '103507381465701010401', '103490023659345682950', '110283364604261253002', '111887075096360352528', '113959435258864431393', '101218371689622128361', '100096528278409188670', '111335922737520302374', '114723350951535444562', '104704208945955537679', '115679589514937555999', '108917917927416072574', '104607825525972194062', '103225292456631554770', '101934437466204409602', '114596463182738407791', '112596973929133983413', '107066609145001672622', '114985013465037586756', '100623791536600553325', '100401708106444405523', '113285356124986797263', '115629548841310688016', '116815043422362494586', '106901350204433474063', '102607386869220645817', '110133480834100847635', '110423722073095835246', '106753049292900693083', '117494954219622059254', '102011100939418580380', '107738139256801286421', '118436909481674133865', '104156551898535769963', '110399185565600323230', '100835437473039397104', '117269268918083247282', '104973689929615532681', '108637075068178328561', '105202709512650456953', '111466009350720554720', '116250009958844646720', '105014028567141864192', '109744843287923813474', '116887436546769375688', '112493431048167821018', '103452050798248282778', '114750386879006583194', '100609200747033197938', '116555083386520176296', '105057743041374553915', '112807126566758001793', '115615319819630033507', '106012481736638686979', '118195416779348475003', '104776433680664140552', '112585341928813448740', '104666354485189196501', '100578202127502407103', '107525588207391969782', '101520511204797359099', '117278168886020265135', '109686654346023962238', '105562392993385643663', '101520077969854966120', '102610444632698510215', '104000421967098138420', '110834083330330746172', '105828335594316527207', '102447055528197599845', '114238848179918960497', '105637155712287876601', '100653894902215465979', '104245209766042196395', '111045518950648031219', '108935348330187170024', '112745347790923628984', '101997434473364451852', '107074163618306062768', '106770610787796260587', '108333665110294798935', '103685740157136493702', '107231086341030547456', '103756270273477291381', '106076219881946713098', '116984669804618209616', '111005008195348738620', '101188292687117521197', '102690447793240190249', '116935226633911874035', '104819901401112366043', '115602760308324028776', '114820480752300993890', '114722362043662276565', '108798698997127107581', '112928796157153543442', '113984375822215033202', '104746530192334374233', '113641354088554800188', '105682917929029880806', '112172895831966524738', '116167163116459201233', '105096798346946472808', '113922813642717659153', '115260129877170686825', '101705985546803067013', '103057843502350710989', '116863730677849618682', '109248359293282070509', '115421207682636992677', '105168276680128924513', '108584940222628465190', '114620193125290475654', '101222342989976293859', '115163657769014504396', '106963775238138670657', '115165205120331393982', '104279107049574225556', '103296595669319654320', '108847139189923294371', '117537950835725238331', '103127067335628413730', '111913294158600874183', '101016488549547001886', '112373237775458072002', '118051183526789336023', '115663008129171661919', '110304595006233532529', '113387268363968644500', '109925450421274121160', '109121803732047023565', '103568848235332346301', '109420348171622152415', '105626925721558847542', '103243515693467499824', '108065043123202343467', '103464935474818028904', '110912055212888170698', '109149494504964305881', '111441375914865949700', '112099671655881647810', '100005809427652429580', '116463032252840790333', '111418474601985915957', '110295844480825936400', '117012193154182916005', '117792005919159036202', '103918782714606587310', '100975618421409141430', '114427619140485635394', '106624908229691820592', '108751138108005469822', '108927164035015492479', '117128672203954655256', '116443492637968772227', '100276638705004937355', '102942463804709310436', '107554392786806012173', '100068145730356623940', '108330746070996824391', '102795882537271964266', '116111933876321104717', '116649170286583371520', '107329843700868576110', '112998749243338946843', '107209462033174239404', '105412422659562771828', '116522624183998756141', '100565437335936094929', '108422684832218558403', '104672614700283598130', '101034415958781062784', '113456203738507213575', '108331961243127940286', '100994657620984789503', '110508446117310549309', '106369077103680701108', '116595418571322057411', '116099277207398914278', '101874080810183022526', '110028299208161392654', '112247203025001649619', '116690953875157042000', '107946961078943370483', '107691163524835429537', '104817633668230013853', '103429825907085420701', '116517133615208841339', '103575399676599635897', '111523808203160874141', '104359568476968412848', '104382821820488735558', '115910676552586250784', '107188788248244608953', '110723161182814777871', '103372431688184929899', '105559429410378216754', '110645922162081253079', '111287572135984976332', '100163238332537499583', '117585400746388462491', '103471889304210930424', '116244751484241690077', '102550233838963881385', '113479597774861280964', '101423842955540149014', '112402806942990334873', '107983336737284521544', '113882100233272026653', '109705341157728078964', '109838381960700452907', '105237921709043602191', '116524473777969007095', '114437493840725182500', '113802344619945542252', '111652714412182855492', '107570961829991066907', '115498770227010521586', '106237697616959334118', '104356957682366570813', '115927870648363036195', '103442974084244428091', '110296961334162565272', '112659399561175810227', '113533502402180936683', '103354880948309691929', '113615559210024038819', '100413801581310316369', '117544103486117718688', '106225038734843308048', '118079889028052392889', '102915603361997652174', '112089326023442890813', '113627579169925955646', '107510365408888413417', '113491802750170725132', '115396639452469509832', '103197072119870191855', '111924432457519468020', '113965033696245622569', '110429769116505259644', '101721451827815664563', '114899522425082849357', '113180496774797510373', '105769451938422053822', '116411437512689977320', '101735330178818807124', '114103669757120530833', '110292076036271913623', '106043731707156748922', '108707792928475298183', '100309650424237078484', '100872876956795042185', '116429435802395645595', '107985237530390893631', '110384859728784051439', '116691136217597661821', '101127358291830015133', '100337583583132526767', '103495900583414791676', '102103300552492613781', '112022440956088651301', '116147512237797116756', '116892274923495893157', '103270374002752936491', '117552698816637823490', '100252339540386672464', '103140405718724149855', '115045409965027013717', '100329698645326486178', '105343629904718099625', '113949487993863767866', '116660410556163393541', '105034220628990195204', '109210556273985402669', '100980979287274593007', '106674561143088442070', '107689257606548570571', '107400386031872110984', '113238407296509200124', '114661304445626184013', '101775378004698597747', '102800371371135622969', '113807532026808117133', '105452679113309337104', '115741881225839706441', '102414921526172028172', '105508660898837488930', '103895106281619011477', '108396995968821132401', '116617844200815491529', '104154510648876236073', '116706195717971759521', '102931842347172937595', '112786890450122407289', '101952863053692958836', '104947278653644467788', '104610015901686190830', '117384587111087743652', '104620557066160322663', '114199293941855846544', '103701844818469254716', '113935808109821908050', '105293886456793645422', '102228138880231589720', '118147897097670149361', '109492294456525377684', '108246157440293603595', '112466289687791451467', '112474367030933587196', '104637506708416544412', '104346914909663775617', '103458647163810854702', '106120339174989120480', '105514142573871707546', '111314660885088440303', '116275857019696190172', '115898638478890997015', '111234552344495202201', '116426018234598080075', '103850965735871121071', '112528604568167140988', '110846410886522908410', '109602717285147402581', '104312101745348855122', '106618717445377547837', '100802098332606875346', '101363420670773470622', '104437199009265167412', '114458685740868503841', '109236580877596744501', '102418039386311028147', '114164741304215712201', '105211506368416369478', '108053790970132797060', '102978065556965822952', '113386187792732612376', '105150138107521642010', '109414221937352781519', '110241306564912101634', '103382133892057015635', '112211961703142420817', '112960201172167885583', '104674523653618976713', '101265287919160637317', '102835412008947310524', '106093315121102404734', '115104069646389182428', '112460462800157435585', '105264947160217806145', '108559055101768603660', '111064279321629547930', '111816110574238534692', '112829241725212945302', '110314117509003498873', '106392362777471211481', '104950390394311878153', '108157030836771255408', '117044063697470262714', '110164187855514316489', '110723624163518357018', '112292414198276054098', '103902837507333573775', '110023904208758175742', '112033282161498094504', '112622420762576522129', '115390855161234949409', '108609776419787341388', '105026630819824298577', '101560679851359535742', '107454875931047016644', '117883496831203338163', '115706692326163380334', '110807210088636589251', '108358355482390234713', '113192115815282097125', '107603571889890796149', '117359612091376902618', '109550312352993731394', '103158447944286724575', '117835064414371041802', '103753246154433626793', '104799160568450312846', '103999637259487452487', '100163155057122890291', '106247049058205465701', '104477868153171626760', '105851080457064708898', '114063621336261903092', '106623569435881634966', '103547101416445539717', '109330515781864267219', '117231743960522064512', '102429033904627798413', '106127128773990697459', '102861375672472314612', '115093655219784901392', '104796252234667238720', '105470950521030030829', '112835315010616085809', '107673209521796924541', '106330487416823424328', '114574946773548399121', '103518543573240540885', '113435302917113419960', '106074369342418466880', '104545705293219420453', '101517702834173981462', '104449483355923550870', '104108328330202120315', '116239940073350846016', '106488424923710466886', '110240619785255499063', '109545513681683958686', '117580707036980580593', '102261841067368758247', '109786487088662225572', '102073747889450351618', '113254447794337890125', '106091062692012637006', '113446184053786049338', '101894017746711407041', '111097198237997918386', '110210867243929014459', '101799533248453553128', '114737380666798321176', '109513130879037590733', '108124151155992917028', '112404075585964695421', '107790367245887975375', '100661914783868753304', '100412213386584648247', '109050735453225493965', '115686461214690249154', '101127855437994948867', '109468588397239446392', '108762671490698771511', '113409763196043464003', '111283355559632014685', '113772620663265751526', '111434081641654028537', '100768035340494924632', '118103244481533188445', '114503718663848433100', '111525227247938797069', '112240370345372758525', '109084698270530348428', '111988916680313318873', '101904002149716558203', '114399570243387179751', '114021871725450810893', '102552390342954072386', '116466745743153301499', '100064147221397944462', '108925095650421163240', '106733768004862090290', '109501703581947740465', '116570597784626887840', '107948437960557548607', '111124930081935539248', '108667968580174698698', '115392951895946183772', '108958286033422167638', '100762929605976411921', '114631096572515710476', '110699890044237084645', '111796773894504400652', '104525492727903017665', '104059132776588875365', '112050047245724905079', '117282311721013297588', '118167844798373521994', '100269984923783138938', '117676292483802154814', '102134343881376040393', '101748883639096024591', '116256692848901876844', '100157399523094650315', '107748994758051895882', '113920526057233976680', '111157851933802239172', '101775119471172064620', '114919376309009531550', '103040583170195080045', '117683342111882996354', '107874114351340563166', '106327011702418086602', '118076164907023431365', '114528413975903780730', '116540137110787894216', '113384557845941391470', '115864772802672600481', '112847316090042624897', '114152035007324749666', '117383716313942655343', '101259151613606315676', '100150217757439777553', '102295892244191044193', '105377628474938621200', '109121643567830483591', '108340896545132368254', '115895618107840963551'}

Louvain Communities of EgoNet 116825083494890429556
Community 1: {'109549749746353031555', '101402569203245639838', '104782547079272152948', '107542742799095073899', '105828956223326995394', '100605864222557374608', '107650451991930674897', '113158814439512755352', '104770776614693816879', '109742804342446573548', '105754002562827402350', '100621204114976031079', '105720374917117266351', '107155974248510352606', '107401572991508607847', '105248484118148978714', '103245041057625130355', '115875365624045799899', '113977984500465768287', '107958711860940415885', '105246828264278441318', '112507886156998828584', '104867148520425189911', '106724181552911298818', '101396087935203987162', '111124838372075709293', '114025996339678208608', '115120856388820348736', '115507605120634504505', '114163495703494102790', '107550335129662216109', '115961021629090154025', '104962347070667053810', '114703714445331612880', '101145980349117737014', '103486150650858067282', '102556150969875446067', '117696408198646301334', '102485721261724622399', '117728611187295597769', '102518365620075109973', '107277383916180293265', '104744726224419902744', '115535066186405182837', '103592724199799962756', '117919970450651777941', '108710095010646545899', '104762925488648743919', '100989405473280437703', '108189481625587435470', '112369916221417513808', '103200491340117663153', '115652070490968035511', '113312804462990112705', '114634469290344215480', '103813557781621765571', '116602440485633829540', '104935478024576728989', '118026639398463272784', '106073502505833617615', '116307911956851384448', '107028157462218372820', '107105348072959327741', '114132784765206558182', '101872748485849744806', '104796164878325999711', '108527329601014444443', '106641334116207071223', '108909492433674629621', '115409439975765947523', '111557988109638065224', '118169756271670551157', '108805430409141907975', '113537711651274258466', '102377882249382281108', '113409086302056667844', '107101208158314368393', '115648054840814963877', '107830048514051210421', '117945818785164608300', '116799045993451756042', '113102179663329232861', '111725564594659562248', '116339430670263519533', '110598861844392285549', '105072305864951447999', '107379680601055044776', '100259898997388388635', '109095289428532932206', '106075926887576280408', '104238885448152096772', '100733334063966339322', '117639837603097296068', '109876915588291208505', '102822450046900135921', '103292125454809728917', '115128808368924712465', '101565121108233400534', '113686253941057080055', '109532860310349399500', '102476152658204495450', '108542426628002931624', '102239645172983099492', '103911607910068922429', '114814005044450108245', '113381419568450917747', '113920684085515272676', '115105647022907007398', '101012074427509537656', '113360006680774229829', '114786301827117129615', '115029186078239273995', '106289562822644692555', '102409541521880756024', '106264880718777779181', '114789052294324286806', '113367609333589754250', '101595233284055239142', '105607680428558991633', '108099300904077351421', '105941540459124123898', '106765350556195002063', '112912266573852052346', '115530776534617554663', '103850326109556474629', '102029505169101002492', '105677477780133875152', '118036378782834084572', '102645532385014073041', '111499016778755078481', '104102743248207705784', '111065108889012087599', '113625462103500841369', '108651717657234645162', '116334827514261561554', '111577733055729620503', '104116284520950538276', '117345174540134167439', '106133480923323663427', '100379345990767507644', '108721466183079531495', '111962077049890418486', '107004843925454095805', '110101984758324108622', '112932480074118093875', '103483946223213592002', '116222252433204315983', '106533767817816079660', '113464569897311842405', '109892778117736265351', '116944634206258122974', '109660946159817383241', '101962829696981365403', '104291276465722490992', '108439032486286528947', '113455290791279442483', '104635208492390994067', '100458759797322732511', '100879115281181648565', '102914580922828464008', '100580057424662460288', '100668872320235339612', '109801044383691533431', '113031968610080900456', '113384192950187076820', '104763480255337902487', '113016455464110944014', '118223886077516675224', '109549484898750371360', '105945403054619746508', '102528718122061029071', '110528202096810721992', '100121444682130041890', '100959228904648752499', '106369182367169177791', '102014703153353451681', '104380036950579300637', '115890818529847454494', '106983800549406471589', '103274398541354707265', '107362628080904735459', '103009042022920905686', '117997508248143467215', '117386232350873428301', '106565143050969197990', '100267777884892163462', '108541332650490652167', '100499707306826250884', '115653522232867695783', '103473863573453096651', '112380861379242468878', '104081052260915687825', '109250100231387503657', '113751283404152316115', '116119893029262153595', '105467410031842833476', '110570190335649752012', '111136943830266615679', '113184091727451211493', '112471890387110967375', '101545896700014850388', '100715328241636136414', '115763820862294051342', '102742333797709782764', '104119324947337436102', '103503116383846951534', '114096999830773780731', '108470782772821648496', '107148487955439180907', '113027287369712034675', '114823329938030546555', '107825480915810491568', '106170102981460245504', '100318284953757812785', '103667678270324179713', '115907986192399529711', '101348397943983026449', '101435445820764233826', '117513232055994920961', '103892513613850678007', '108464819424870648074', '113141491911286106535', '104486088524980775787', '114313615710604492651', '116362607135656263968', '101670592154326222488', '100646334382638139241', '117599181480696978620', '111804247239824865164', '116040565882702717981', '102978844530468677164', '106471196851060251721', '110573952887886961621', '117014035284065592442', '107462515199897328861', '108770653757133854006', '113403112154194398439', '111349868439224262161', '107200271540430938845', '116321076493684152235', '112447253390876285565', '114536133164105123829', '101484020753179036782', '113339552992922631802', '104218337152025238341', '116246462646179586664', '101155443773705571285', '110622799243164098040', '108761182084477892096', '103856102573349408385', '113900138806012194956', '114969675270324680172', '100936611936552412031', '113595722144466261201', '111831478459732211063', '102227359845636175866', '110592217550794732321', '115603501102777898212', '107645386414896538486', '107784212140893392732', '101793532287583914396', '107742567767125793693', '107639567933788693074', '103977761514480488970', '112445943201632082642', '114489504825638353488', '116678377243407600427', '108529472665206002794', '100132612879660965860', '109031486518632696635', '103855721758679327070', '110258598415939907971', '114585365564249361309', '106930820875100875937', '108705174211639807508', '107112192270189573201', '108218933035613051336', '107813030534261413185', '115774797671804302541', '105284909171916066479', '113400351102255476238', '110492963926129353210', '106287665062204946341', '112401605196934673030', '106488284533523054088', '116485529671477438936', '109368428708794414357', '104877931759093166358', '114504022490238986254', '116056645771775490363', '104635901512085953672', '114784117253308700157', '101114516910832196188', '102958145054444947691', '116594199576805510790', '106119058565573215592', '117178975214870026107', '110945896776944314708', '105013324302057228724', '103128232230617819686', '104833564316573420990', '108940614072693028374', '105980354203966235008', '100245173607132167999', '109557059779760536529', '100965894197958353340', '103384762815820358744', '106846340899002453404', '102373191596205712937', '107483714191607682955', '103537153144510961548', '103519655975029093996', '110889597904569758528', '113756723130417023993', '100737020332026189099', '103761326311610249621', '115451993522621024283', '103899043917116388673', '106501988136092543170', '112878918236054024365', '100425739170055690781', '110036682383342142442', '103652441454188509895', '115143234371607892983', '115505611402423023943', '108834544234077411259', '102865263115020893218', '114672443824698058678', '115783433697487191519', '103079526275359000556', '111347373455607606946', '112708194574821912619', '118274547296450170219', '108966127324917372093', '101011724459127748526', '107954398003273214795', '105984495606202082303', '100928115753316027300', '115971103286397223281', '111028035383789880812', '116075808135192798838', '112971045758474660173', '115647033908194984232', '109447323719942836871', '107870240225843632731', '107308460013033893888', '116877098752708522621', '109552601721259087926', '101832053372535369591', '110168117080267015976', '114041586768797291099', '112236344213897425331', '100095245926948995335', '101130571432010257170', '115655205216183932495', '113356364521839061717', '102349305007676725479', '105390077271236874234', '117757565120070816446', '115058384974405026221', '101035196437264488455', '110548244043172681974', '118028963710199804828', '118351515323229708433', '105231704254423883185', '116455200564503192965', '105292720644701267102', '112941576498848328757', '108316978216353880553', '110435582822209082831', '114019598705934897142', '103481047858421470011', '114632420693151942233', '116570889542655364711', '104166683851434520973', '101563480151464217010', '102657120412025344132', '111907009595057957530', '109330684746468207713', '109592634059397506775', '114201007431144930240', '106567570642614609073', '106516932879091056402', '114476892281222708332', '116268124700162834377', '108972862430615180924', '101059049290567215584', '107675155083026839050', '117783113906561198831', '107171241573314616937', '104109881446393419681', '108862391031743001286', '101153468639331529713', '104963253009547488302', '111362927859100360381', '111413319684382233628', '107622652992550584661', '114972221948028006870', '101957725892036154972', '106237174356318230057', '105734935003600818916', '113944846007907559686', '109400557889535867654', '116214152295449083654', '117210614636355259315', '104316443417435189825', '103068263997909352712', '100377493270775536948', '112829521495919737876', '114390577443742844389', '108629717769018996477', '114369704013100203178', '105943946099362806788', '101252166566980706005', '116369071500456395369', '107438998639340158528', '113439083777685002957', '118170768987466114474', '105336425684208963598', '103685740157136493702', '115571998474046088312', '116071275946594200077', '108036637513915049436', '118437039478327492127', '111943154038712688786', '115582623750221438794', '114820480752300993890', '113111731715139693250', '107733269574737813168', '108872243576352630928', '115421207682636992677', '116507162463328305307', '116197193480724162859', '104522833443181754677', '105694930790909515613', '112307283830146683885', '103958889550659609890', '100542372891417952741', '106423972574891015943', '113973458554656282296', '116247667398036716276', '116043947632177598920', '109591343291103326958', '110334143643816920823', '118067224222108261882', '108894449265020302496', '116616473522216111363', '111802897852642861248', '101789011227801183737', '106243037947112322316', '109409901036950424138', '118391323892426354857', '112162067187975810298', '101284655176661713644', '105318217552727882571', '106091050631218132314', '105786329165387175660', '115220228182866909424', '100962871525684315897', '116970595683400419872', '100528103026443249226', '112957708071337353347', '108105194941776408439', '105461498993551154531', '100932195479763784248', '104178723837900724588', '109368654259427988906', '106709392619461204733', '117009886930068964404', '113861527938285739869', '110053263559112570543', '114729740472671073461', '103857876783441100226', '112661262066626464523', '114989358912013434555', '112311470127292513285', '105228323457033543279', '118390286079345532806', '105256156026694816333', '113795961594472514455', '103586615087663445665', '112630132689918237462', '113027837615023628132', '110095126245882149972', '107235139478887256327', '103341235804505564047', '106831762557971378854', '116995710336756123292', '105267656376269695918', '115876313538796651168', '112516512312962070044', '113664406921737357882', '113938146251263994958', '118418436905562612953', '117528322815962803521', '118007019733262675418', '116217543656262200291', '107329843700868576110', '105162415753732103955', '105706178492556563330', '110025177084709634671', '113216425001363110392', '117876399076277118155', '113097851206100618060', '110677399908549124400', '100603420708037491047', '107588913389869807388', '117741745713138927677', '100564068963421040372', '116561012331692075800', '110286141446904173472', '108584805279585306962', '115360471097759949621', '105551989431666449555', '104859346014137939134', '109712453972595429074', '102616149286682191474', '109549299113812964324', '114153859732710523651', '106359487807208915036', '103155291053045215105', '108202989932786461870', '108545741131375046692', '101248054507015265353', '100580349003099136931', '115728458120419023779', '111890945016831896743', '115080215652229659698', '113108553370117627362', '112492933628695918241', '106684105564729483790', '113770461910835900905', '110041523199056192526', '117105764275907696041', '100968313568314999910', '110136818693267034218', '114409227627705115898', '117627559431013489137', '105894760755439344491', '115490868856377625184', '112791456928724330032', '106927703290536139147', '113654461547690050667', '107328949221172543768', '104241567849916091297', '115733604509184177258', '103068252687042190272', '105583560574886821031', '107386249394822179765', '114092052797730247075', '103216887847401478447', '112016242624005519460', '109469364628436783260', '101373961279443806744', '114754636447194034168', '113190229460560085138', '102871123574468799566', '107432398539341365940', '115289783041335985128', '103442974084244428091', '116047064092724050557', '110215708496522939991', '104873145996437055631', '107566737427662380385', '112965608024184180683', '103984263629438381785', '117518723197409899160', '112617127041903537004', '101901560303275458765', '103917354466860004732', '114967530494856854235', '117681034834791918293', '114782440157903842958', '107297378329620440295', '109776541085987843977', '110853799830000374161', '105852782594022510198', '106131533046921693069', '102655243537270905389', '100001460601553769984', '104618664838382110366', '115635783790203857600', '107490600889040777735', '104606614753457778918', '107013418740229269209', '117538315488626912884', '114354878556558710088', '105237212888595777019', '102143577107646910352', '113146596813770102711', '116947923643606285942', '103613260673488067634', '118055814112266323118', '108190746792806228802', '115978949584209885559', '107494834634231938072', '115811608074199996286', '103619689952955738772', '115831773236070302803', '102819906512633210274', '101307535045883163370', '103275414019940070295', '114790124739400437749', '109514310754765307668', '113327741559079110283', '109091562885824578661', '116143938603101885158', '116636587940559016436', '109086327304624846202', '105547060999578080024', '102420807080086585113', '107894914670080014116', '107459220492917008623', '116160296886796853429', '116947906726568301788', '103074474198131988698', '110584481927562150689', '105422871059252962617', '109718346641639271496', '102195144388135237932', '111204757488124368395', '113278937129481000981', '110007205463584534134', '104215639329521542302', '106020745084647886919', '109187026428012507334', '107420755679696384063', '101459687239917385334', '108123506134776646550', '118208834515255752193', '104506173451566117295', '109963922595684695421', '105554530405165838441', '117039260735952140259', '109596219054914376350', '114643947103456091627', '102920063140431683002', '118306516911843051370', '106455052219635361001', '107119940474246316259', '117697399358826098478', '116219534929662479848', '117429320390907645600', '115851550445020159565', '118058794383720702307', '111720185193650373558', '103011662826175289775', '111627219638715165418', '113427970254443655999', '100940526701263911236', '100190655365702878730', '104795678548419663428', '115512958737234042650', '114288572990229558524', '107221142875015274837', '105161232143858721168', '108002490988800333787', '112961270204495595553', '102014391248547761203', '111622908571921500866', '109122539496160679247', '117211092043045415977', '108981679893410895534', '115204805503581947511', '108470801637099721956', '117046805137232256926', '101500353301932666956', '106245708073909716431', '117135648419896209276', '110971010308065250763', '117597741300929529028', '101313088594783802183', '116064138203319882798', '116164940517560160998', '107542632252660344559', '110865508009409873937', '109876318275533969777', '116696943168863559388', '102873175118305865375', '103503784030163121732', '112761340428079841885', '108182285273662041292', '105568760052131786383', '100284380639791061360', '116344399331270961004', '110974772585842612281', '115773593461160257661', '101220763711015957928', '112022983294967948367', '110401396942294674409', '106711803105103787711', '115203451804146087587', '111522003007603813028', '103561651335947774764', '111975545018506506119', '114056084994793924628', '111033676716092524756', '102890697148807868869', '100892612779426154375', '105363491534100470419', '116560377643176212063', '106448502258162613710', '103657280492137983446', '100513454716900546707', '101259445219481496562', '109507653225799908921', '118315289638381529701', '100446039411972959876', '109220060006128553211', '105873814765821560444', '100566894659845026162', '103878892760050193072', '109411102792980958965', '107867604773686247488', '104376626976827590822', '117445424749732615634', '105662441312581584585', '113339707206657259218', '109533441517984298838', '107543460658107759808', '102076033841555832518', '108319282403260526672', '111262146038004038186', '114908847203028092210', '108280699895760004049', '102699000494066195263', '101958328416568661251', '107876615810858105870', '101869395366096983724', '115440213129297896810', '118048139271163842678', '116056482297838775754', '109213355974494564760', '102201730297163547767', '105507095357499885933', '108032623298499022371', '104755336394155711931', '103271875952524841365', '106787788124127706441', '112104018110702208083', '103518543573240540885', '103875258484706784219', '107164311860815549291', '114154062944146796931', '106138725016778836952', '104690840682959408925', '103956102159563750564', '109290081130683690010', '100771715351072186974', '112208571342917521602', '103535806271845766896', '107204841083066083308', '112092526384728873892', '112750091316252656625', '101414913556920152653', '112837439401580368562', '117530250543183103093', '115459813655846972584', '109799158691725472251', '115037964805648105129', '104359763476253962070', '106458554244835260890', '103154767864398131776', '110806755301520450833', '102117093789730100872', '109774951215877430341', '115060759249467443548', '104987932455782713675', '106719979779567208605', '104461270372989098596', '113939332173985992126', '116008246625614132322', '114394128653474707020', '116631329713205553508', '103719067712188912978', '101367799604091052665', '117058794763073546749', '102146889390183510402', '102406042148418309977', '103115473754659376168', '102340957096120356053', '114764567692252908296', '114229157887417365950', '110676588457949723144', '107166369539777818001', '100586461319763000734', '103236949470535942612', '113501423705211783319', '113934645215952069062', '109851037140005639446', '105045171929479472199', '109493490725321636855', '111023773669087114764', '101524375883443415732', '118291162655475455492', '110329781365538654444', '111873853137122484021', '106065832799617372150', '109911419351912426588', '104541959256591361052', '109268388872941447574', '108907552935332685211', '114399570243387179751', '109002964461887714649', '110969336043512288989', '114045800510530461940', '110601770872755236163', '100472608497932134515', '111124930081935539248', '106992323093389636048', '104548627795526843775', '117670223716788465006', '111518627657059019573', '113843009097459888314', '108506119827765810454', '112732938301956933096', '110277817841129323109', '112682502973212166227', '109123727761757726835', '101828183984777718546', '100994114474811451452', '112050047245724905079', '111562638514922412630', '100774699436094132400', '103245952838925212735', '111699855306814304937', '107507539268974734333', '113920526057233976680', '102554407414282880001', '108621605232188649028', '114231305708772868829', '112798516308771746920', '109130420645194541096', '114402718274188318870', '108215644829092784557', '114835618008913240560', '112894485849628624264', '114786794106113206036', '112507990251148189537', '113775216082198424237', '111862324534985995584', '102755548808767411605', '113450963153809629492', '101101086295080736193'}
Community 2: {'106126261940932820514', '112637256980621440660', '110182232678398743330', '106799947547437881015', '109270014639713629436', '117434700785795497701', '105440930860545197526', '104382417484750432202', '102593052071038577759', '115379771846462733134', '111822868836842438440', '117436213449689696661', '117145133138219689625', '102812289820522889148', '117664559083832735312', '117387900789855107607', '110603658780349242454', '111491336706436097830', '117657983173104426574', '113764396326940917667', '102076237575317675200', '106601846393486029227', '112923382582396169260', '108511131754615941074', '101904131866282936786', '109190016520573065405', '111725791661846377539', '108713260442516528833', '111803742341431288839', '112230829151586876982', '100897547529398455092', '103167990451940368905', '100641536537116803578', '109581142265954475469', '105562870277647487695', '112696335790174089000', '114264932789011985983', '110279483067993163131', '101134222267651638488', '116141013704632767712', '112714184089890208861', '112542158176381429018', '113470429000591242588', '106669669282407972464', '108690765446431252531', '114758918473021978069', '105415684147500193306', '107628194944200935748', '114716902370628920387', '115816648317907146888', '101224124740215503474', '108460697086993828229', '106158241899496791551', '110613335650195983113', '117644851237467616814', '108004554899275216609', '106073872526473823745', '110700959081138667597', '104417519136331792288', '109283095184155585757', '109540736337507381415', '111938195997655186667', '107215997916720626299', '104304551742103581836', '116669050268137597660', '103128370355406767788', '113953932153487391973', '105367282475523519515', '105393611751089347065', '103439173601994673825', '110356339111024950702', '104784062788457223997', '106696037078432775517', '107305537119888570200', '106160452233751493430', '110160896720032847611', '114863475534731958270', '112145306019359548608', '106991151617762959435', '108089660057573950526', '106600202214762132420', '100798496091140616935', '103587833442794836621', '109024867328761143040', '110883056373027725380', '116022877845011670830', '101514935304777821743', '117035689112253974106', '113829565851019005207', '105157325545166348963', '108657263619106645673', '111661482857602977701', '102897293152319071154', '103690139225536489334', '117900415303048359423', '114826888920340553725', '117224975816605210862', '111563631236187503651', '109935985751707478855', '107687951928790151859', '106352764624031083367', '100121801586091811434', '113237292574033619173', '111290144582656865864', '107716213487012390259', '106157356146753673347', '105462925806396684082', '108055202135269402535', '117555429272437463995', '104744307819540576816', '113747617876590501474', '110279657386364387477', '112587886257842125974', '105070612606611896442', '107190443887262838206', '113610422528352863734', '116821441950454359337', '102203232676419615990', '114452015619811129803', '113335509872825000294', '108315415477818979805', '112363262267749885269', '105749516650526462849', '109593603497026633073', '114681662133828049230', '115178935281459809282', '108914748660749767274', '108314772386132524967', '108141759774614598227', '117416907794149631532', '114666771790832924031', '109341794087426108915', '114104974545039127591', '106162454767788365342', '114613527748749334917', '113991817717810176406', '113470447989396490792', '105232685081597491980', '114423580935011020310', '116721376782964134171', '112294174341939064186', '100673681944994083374', '106989429164441168693', '118069489695159273659', '100555944527408404496', '112020617539234603836', '117231119056052212299', '115959712529588873408', '113233389612985967769', '100266095938377120335', '112544875997729565776', '111481309741235627193', '113815496175227038563', '107409246377739765003', '114069284820645237428', '105803527247686367893', '108705416498017183658', '106637989234751198000', '100166742642746875850', '110121640726206885394', '111779580343566202970', '109135720512005253996', '100301046510181577177', '114890399521232268033', '118130158686928147490', '104644040214991298426', '107799929014131405258', '106433777872705128292', '107633819082946575671', '102903569014203827345', '102172920960859510808', '114043359570728106145', '100899336385747688735', '103199730253236302228', '117488484541044527515', '100348592160463701156', '118275659951093359031', '112196390527993445424', '105470844763554977589', '113513784069185249337', '110107053504171105976', '100925086411198204814', '108688243602687254996', '101833355159678734056', '111907656136306657088', '104824474399174534270', '102405231654378318312', '113521113094746407741', '108843142878982516323', '113411651446816733455', '109242171175532811664', '113249590755316154115', '109966940109858313273', '107829157309613164853', '113780962233190225984', '101928100085402449492', '118014713104542449732', '111601610412490975420', '107633268397305345411', '103963937682668847574', '101220401485018584764', '103944200593679693690', '112577937853106328897', '108181057783499724229', '104474974874825905514', '115528920991216094797', '111887635720520816439', '102747477452348793182', '117175003256940230380', '112138614555571088739', '100825132939382296943', '106666857134794330685', '111456938798376676546', '113268795088098824556', '103768391344516947881', '102679725709904747487', '105024290519294056168', '109416428441183815162', '104540017947791270152', '107037094585719618567', '117156643252422372821', '101248756197934144711', '104291815306029587287', '101002784458488814276', '111135022315842179308', '107774520355218343105', '115950667089821302848', '112311160043716171553', '111251218890795672321', '116720001538198378024', '112713595811638089182', '110356369624324418748', '111212601361064085484', '102647668692829991581', '102464754530058979483', '109914910084231628992', '113586929459054611000', '103434089999451438835', '106497827053008591535', '106155032482060222789', '100150638677610462889', '106764309848787970378', '117922689117366382743', '115245252825542472380', '100511306010181082003', '112350493622363194419', '111153483054414741371', '103855834855142159105', '105879309798956721686', '107400727833055897976', '101696947948900493388', '118016984738741937997', '113417437040428102527', '112251726135062739640', '111058476721986414902', '116145247537297004398', '116159046437755551208', '102720917233462206601', '101658025590739914192', '103308143737800947573', '113974669031302933478', '106880289367711960351', '108097622606013293250', '117929737492469500129', '110281603144896486994', '113785978215764496934', '108573614752674087520', '115671427944667696735', '107192646160952419747', '111839534322118676415', '111165470935209078921', '102965581678189415885', '112026139541760362193', '116953670423531956122', '105045558617219306510', '105774584262673652364', '102865113775682971738', '110815228753558444774', '117757174855940910802', '114859190179970160515', '108249800162083720535', '113275711266904565746', '104371222560469858243', '116939173924748374891', '117655447132468719929', '116988351660148062102', '106168143967919169119', '102674978292383624811', '115546234194879293231', '112188554294623468892', '106184165946939121157', '116424426918592590125', '104912103271510399628', '117785536189143839222', '115111485112027405250', '109963884856890880378', '102699901997021129895', '105374098734863083442', '118386958833323095147', '112712533549577289504', '117549723823801144049', '104708364683859663959', '114049181704701025985', '103614503406444297179', '110464919150147177662', '108688176636356467369', '105348003602242780828', '108413597447248376486', '114063619069517055995', '108094646949233134904', '109775390335640688932'}
Community 3: {'107348650898055948624', '114875588593485801330', '109345865429707844168', '104142754390088344306', '107035856538795677401', '112915508949553064969', '100324134371388101482', '103934033982985168152', '107558775673569042478', '102171675631622616190', '105637998950921308593', '116561957300650743118', '115460594433844109370', '107917446076231925165', '107625733670511152905', '107505982233194733111', '112306395963035726911', '107014679047964718793', '106837090066373480703', '113944761093719848989', '115739112096228507174', '109787685148095217484', '102981795338524163479', '117762029163958807280', '116849062506250163587', '111002511422475691353', '109414049565374366512', '100438721742151441706', '107385849456996549798', '118408978290364069755', '103304199590617590162', '106189876115589151621', '107150908822789403900', '100786285616685268636', '110806738326469034795', '115589129717097285211', '108078910773248435914', '113572186096020956020', '105459286176511899555', '110292711527889111689', '103972479946816291584', '111395306401981598462', '108031819342546762156', '101169269861152216375', '113691305614063321105', '103791857800149318323', '102772495706435479752', '114822401067576646327', '105421057423009814548', '110624896606737126973', '112903919681703164454', '106393478695568433143', '110255709702147736441', '116665417191671711571', '103375765214005153678', '111349444249397924863', '103159555629815965457', '100545888235193447374', '109130886479781915270', '102854726264949312248', '114077525644661833984', '102898672602346817738', '116151548242653888082', '117287477701152682741', '108161723739773419301', '108091327114614335688', '101975133966831452277', '103533326117556337218', '104364710985043058656', '111723576929373579768', '115702306533209355625', '105138234536720823100', '101683039849030383098', '105296073309971958295', '114839908922424087554', '105339173037154905404', '112267968031995007637', '117229741441856959630', '116941330319027747519', '111749052209901260440', '105340296846759397168', '103438410892269469773', '105966702668067411573', '114551566041977133437', '108254994768513256657', '101342392255923866305', '118125449644667930187', '115517264096412300026', '107509659752051517874', '117575809843355974839', '110262775170662376003', '105924818388092405620', '115200251016762857369', '110392055214657179518', '100941266751440211155', '100348624348633155177', '105638298522327541847', '108704215810307213851', '106215718640234782825', '105266986915657347377', '112366735963271550830', '102043085355425659178', '110260890556821654420', '118097669306422688729', '112392711044464480760', '105145910605015757588', '103864209986771135372', '109641290533350643200', '107636039981782815369', '105222907836628340919', '105324761189549512199', '103558652341658229842', '115427174005651655317', '110983216869631462009', '100251841501532342548', '105259684750769701901', '104631587888354136367', '107149171458182879545', '113420422244530728570', '111898652807602476145', '104315334649820883128', '117528910726956582907', '103746374990012367761', '106225487969011886893', '107583100248616844191', '114236428172025092916', '104844660645787552503', '118177189004466545044', '103614891582957065589', '102780726906835902473', '103933443088213202560', '114944865601039031313', '104234466191512918471', '109780686446922422512', '105198124856956810263', '103739434091749997009', '114610751804622117115', '115478755304306027109', '108551811075711499995', '104873353332707777690', '112669442975277292500', '117029209818135564846', '104629412415657030658', '112863487766621925164', '116046131107486389598', '113186623583029971455', '108814740443144160153', '109736771317629495108', '109155654841170755916', '112131480808552164740', '116936089053490488674', '116234824425478706959', '104459480948960105365', '106922749586772073195', '114277969350093355698', '104645363989462824623', '109401964142949249458', '114608629417719564605', '114200445923821983859', '115940511630531767202', '107267167012376310730', '111058843129764709244', '113990144219651863410', '104059611505603201386', '100930217693057805816', '116899029375914044550', '107660875906928406568', '117958363368979774542', '109111565800804120845', '111071268551800734278', '110556772494804817339', '116602415106481094851', '111989626226970062885', '111402596168371767684', '101906236646150432030', '112686843091136170762', '115181052736294416606', '101701744228082676193', '106600684472256985541', '102151481388972252203', '116581478643467215892', '106003910218342053943', '109876467727174291780', '117310042965407401917', '107736282424750070684', '116354326277822099288', '105416475244874554281', '112239105486092516511', '104214901993894018115', '104106591514117095418', '116973390574320264137', '106281600940449244340', '113769414917964087657', '110525745471713399066', '112561860864020930009', '104847159947172725526', '107291158434082397409', '115913129409035093824', '111920649327427068114', '113843259678479128024', '109361870781096468894', '113746358864153772426', '100861274195482497115', '100651621769656849775', '100545926367884760148', '106412934241164139121', '117136543430366556878', '110924475025984196991', '107023198045555153689', '111763466094891893067', '102151371148581254638', '100140020919344822804', '110241536652225321958', '111706765241628167792', '108065304398648112883', '108460561201888322767', '102143578702997047907', '100442007640025866757', '114707910756425953932', '102420421725069396072', '115754716315495463299', '106265316827872063604', '115760963148996403062', '113255240335204167235', '116618949684227658884', '104836499553026434359', '118055372303098301843', '118301801570268856235', '109686944387245096757', '102596260440518224547', '102328323939973097344', '103333429938529668020', '106869755162183692559', '103426958710574056540', '116971095029701257834', '101861996949895074943', '109410878385939067590', '112455368234913367304', '115477067087672475993', '100881023835399578828', '117267008826838496667', '111013953911349457850', '112884630701584601505', '107728981484346651383', '104739022522671686030', '116941747037230624361', '113262975997169895795', '103380925267010502826', '109596373340495798827', '115031854081992404458', '108963715339351241125', '118407841431001042282', '106123026171763346651', '101890689849493980693', '105900802498797939274', '100599778127538523049', '102271488505503964526', '105474544524715065767', '108038060678219248624', '110647107907810818894', '102357493527903688644', '118444997653815563095', '108182489610762944351', '101885535290923906476', '111267716732125387127', '111062530954653948351', '105102087911975130288', '105280454217398641239', '114492520059525754665', '105905539377582135477', '114954712448394413847', '115085828077786850700', '100186938589206311054', '113242351531747014239', '113702254746515535621', '100139456300784928828', '103242813022162579092', '110823652171439094038', '109797793922220952315', '114722508362900147006', '101278242642293608689', '112209395112018703654', '118358933248752166974', '110587955497525318489', '104589960103679837185', '112353210404102902472', '114977743005699906291', '112730936016634545194', '116501546756493143778', '104667904157447809352', '111246222621577046613', '102078098288357515431', '103521633969068936366', '109372979135514372674', '115900903196483234016', '109209366035024231604', '105046530334806680420', '110639085741768114628', '101495632821336317028', '117850331447734054313', '112408773440208776137', '109053629809587529403', '113155803557968243580', '100276290274386395113', '106629137435682213230', '114621063293418511073', '106922749016154628590', '100591371935775791464', '113218590431249449552', '104857406109954440836', '114550001815904870662', '101326359135790262301', '108412905522976722019', '104087812869056701482', '111351825370763813970', '111548137920489485631', '101101582632461364394', '111219661882020802879', '105163107119743094340', '117033062903926331451', '109351566851431429800', '109995262342451767357', '117161668189080869053', '118219831824758665656', '107040353898400532534', '105090097813727726765', '104328553869453938019', '106390983848819169939', '109351399938437494273', '108642627341139612285', '103536232398741480455', '114468593663912084118', '117709665904747694071', '105201985828750081815', '103229534559239679893', '111474406259561102151', '103399997814775349105', '106374858242966024813', '113514826776987713071', '105725281791704071878', '102618047349606277909', '101319199068187021366', '116640923223897011110', '113979330898220800570', '115690810845062432413', '106416389028388594158', '113255349370589149345', '103139665625941938476', '118277244518426914413', '108487783243149848473', '110675463015196383260', '106176762220398854458', '110213253066194075593', '102910134731476500425', '103251633033550231172', '113159542461783889292', '107360993311566660432', '113457471429583444041', '113444937979267174497', '104401480467294646872', '109238402142260823651', '112797667335313864011', '108404515213153345305', '113674252934234025601', '115773559306672754858', '101977577738512604757', '101857406524176048496', '109018156819230326387', '109734221326849566494', '112942450710523248815', '114834349217074466502', '101707266351443161955', '107590093667978669374', '101640695827845658690', '113067760031784364231', '106018807891386594468', '107707592416977920764', '113420641990229040463', '101009365152868438857', '104286363725914412325', '102314486331710415915', '107982618909749811163', '115257171489816322826', '115916670855275660584', '113732134411703928267', '113074415733820213505', '116954710049425703954', '110193291490704441434', '111051039748078110427', '107940613488592745009', '111315125550019591892', '117309732588915079021', '109870053628419941069', '111551895671908911144', '100188557028585168265', '101904885321690716368', '103778755977163571576', '100565385083793662565', '116638327177794111760', '105477525694881539205', '104706828888809003618', '101873583380104625086', '110038350445855508357', '117939780963036397950', '116806352365658350717', '108041799200835991600', '114127792642644027803', '110609519965227423463', '115209943765910868932', '104525236349138185546', '115694135638787408724', '113899310637703974412', '102097892256472472261', '104923925749706217201', '117665613028757061169', '115121555137256496805', '109794669788083578017', '115146484128708835538', '104672614700283598130', '115703443829113040809', '108588076582379537686', '109345878342776468913', '108786938905619023590', '117096786263280064758', '109280579189041928608', '103676950606201013004', '108514823424774616867', '106214168948760942073', '112181520176506548919', '117609910276044523569', '102321872757613122216', '105476594511976792905', '116848436511235870425', '113383608933571417987', '107556483367244107618', '108413247499481325229', '117919489124812743004', '110476861613340562399', '107998202905172169898', '100463344564987045291', '110751695775382369581', '107169475135045361140', '116601386475273901307', '111091178471303665872', '117059593834355077199', '104504981805192333775', '113679091104569847886', '117681241555382421104', '100618870041355284174', '113493854651753327245', '102411199926431680731', '100679016435898597312', '115829854934725647908', '111016991750865047479', '105912973864602608032', '105624186236016769445', '103546981939364425829', '115002587825504375275', '108719090649071657338', '113488701143505505687', '101860196362440819368', '117180480830995674717', '100010851797975049367', '118080670290451100741', '100212953676424405273', '106131384982394090331', '105489065160959389675', '104119608064940163872', '105574566053602019710', '115081025762845243709', '101506536312500371776', '113507612070915856616', '114082129627545059603', '100245598934601485425', '110255737428907780217', '104226133029319075907', '112716129283867434046', '110292076036271913623', '112943946047332492941', '109716233093030928975', '101765416973555767821', '100813229168405788654', '110356773655474889799', '110972318601650054660', '102668364885894493476', '115314883913773500000', '105412390488287120602', '103957402175604659608', '108001808610932121070', '111731578349856195951', '117697379995591819341', '107561981993115897933', '110172617442009114690', '112057381335029409427', '115595081981112838973', '100590113452692854117', '100028689656197242043', '117025861934715115235', '114182956162660391899', '116525969499682780878', '115650187969419363775', '101074477816061879888', '105496065140915063217', '116054611440772847592', '104028329852681318179', '107709523210339030857', '112333944070832643201', '102563308073481655757', '108605845211782811785', '109043804130056015419', '104705492686956563141', '112722219820639238991', '116617844200815491529', '105225758574529720824', '103583617299274276652', '107638157359386794717', '113946715443571015123', '106166623138751182431', '118118198158062253534', '116390263420179644775', '101182548638506711546', '108187756352013372750', '115516333681138986628', '108042851508742333574', '100948164131944782568', '105598733219634674579', '114122960748905067938', '104487223275138277820', '112761831923510245085', '103636214904400746295', '109893938013298835602', '115995105609774588517', '113186142076553545369', '100969232856312001330', '112727226361732924638', '108442503368488643007', '103496979541671123400', '106400545091550012847', '106833168513115625736', '105119763784866168573', '111519204871077983993', '107345380056943591322', '108429362865809614439', '103030116155431184588', '100585555255542998765', '101989171644896834606', '106915573590795484958', '115698389105552718509', '111802118519275235212', '115360504592641443999', '100850366603336762261', '113703507576439161611', '108686021205441482363', '102736222974258337930', '111590901213239324246', '115358085054420116311', '107771181372242547518', '117720626238470886461', '113412399066026825925', '110321107738977493486', '115848084414264403019', '118359327676609567435', '102538905206519918173', '116945187939707071704', '112525579501956900219', '115633934578783827271', '102676202188744551630', '108806077592664974320', '114973762620930727974', '112971505702976750152', '115143221847216992108', '111183741382500559132', '115772701912882864567', '110556770558668306524', '108759270777800830775', '103791760183164027171', '103684974087620751394', '100202609332472891769', '111168495721795504132', '107665185205744357709', '106220472901841709358', '114100493264301545850', '101179305091815209891', '117042138514996380331', '108807575261328575617', '118297780429110098708', '117462647877833265136', '109628964016241092991', '113160835303260286762', '109342148209917802565', '106872062155728669579', '101302643018559111382', '114228869493885222559', '104861691569271220945', '108319956657263918189', '105570771738153856460', '114151454762980012752', '116194490715887865843', '106382433884876652170', '109255183145564237493', '118120364585932387777', '106202342569754356867', '115329145716512485595', '100584443531788315896', '110783217422025638221', '100340410835745046253', '118430652804288725875', '102792764821426862674', '113996323455493082241', '108051154463572146095', '104211020927646148185', '115288001414266277268', '117488931743785379883', '113714992061418066417', '114762187365096815115', '105213991914461740211', '107771531222021787266', '107644893600371081431', '101423581602122657410', '115229808208707341778', '110527112077326441343', '100233345614313192787', '106168900754103197479', '112609602594560475948', '116639337257732316360', '110558272289309146867', '101133961721621664586', '112871617630543116034', '107223200089245371832', '103022927889268617144', '112671613807103204042', '113155551973466197189', '102218502614021519543', '102697834291184572441', '114318197127028344684', '111770459801993602257', '101535399153790964616', '115744124269092622581', '111563906480887254667', '108998673146368660257', '102492240008005301473', '116426856572060857037', '115626641875816620951', '112776394804213099516', '111183020303927203995', '107491769176599437622', '102750343066382220924', '117622079686568464918', '106726317072433225723', '100279438294886290330', '102425186530108954705', '106880480181714471065', '114687971156212828314', '108250724938217954602', '111050672546250921180', '101201530462820975291', '101946159124570139670', '110628189878519037339', '102918064082723690004', '111326853884189007635', '113210096909000624337', '102002299339025067376', '101757560980174712178', '102562992362330515803', '116636748458958160068', '105904310386401967058', '118328436599489401972', '118114557675104381720', '105562689615046496264', '106169272307805990481', '114676398917189170342', '112375731670409469973', '116294435691850221662', '115596395815211678440', '108999765655839446046', '108541235642523883716', '113531415437983740096', '110469605246351997796', '102010353130079040444', '117293448846407739414', '115743003961327538050', '101492398230536582636', '110653793186123760342', '100029155361912085711', '110788689115113965536', '114420560945258744261', '100996583329592168354', '117399283230241619463', '105733948050774149627', '110192912711569207284', '102855346468155011104', '111679645452844346991', '107252020925742571252', '104388239679752586886', '112352920206354603958', '101405355556857502124', '117962666888533781522', '110688474802292277786', '103658843494801858027', '111762131706767394591', '116033514987434864583', '105846714412577435274', '102007746360547876105', '104111246635874032234', '108916370128981093895', '117679472076744619944', '117831279655356042125', '109117453053859900243', '112092488761167023855', '116052312205661322001', '110549577330541857667', '101660858886010338254', '117777716503182780634', '109749093667939250013', '105144963864645396987', '103441974390889311463', '105400736676917752271', '117614344165629501473', '108872361044769229886', '117245054937343378617', '116764082219010092642', '101203282713478701448', '104408971224491390678', '117067458444759790827', '107366271674197450096', '111217960970393290618', '107207517050486426039', '113687916808174552540', '108986482395975467331', '103218677032751327334', '106407963814165910213', '104973761519912571719', '105611889600461566935', '102221927960443599155', '103784452522248646050', '107342445128902420647', '115315050327674127499', '116001483635760411184', '111947940749970154249', '117500003827318237082', '115981891654314432186', '112047849358415491555', '100008438047495460295', '107830973724615314405', '114489276586542400632', '104283104920976967309', '117089612144881217418', '115632939368970139294', '112698670547276329190', '110771678447849409339', '106787651758213244268', '110097167949323324728', '102700271521603579909', '104219386206797402856', '106640510412906590548', '102371865054310418159', '109873092481408458964', '115609437320837668915', '106213073640688349292', '107126665887970596868', '115404501817951919781', '102014544635403551330', '116925826430940068004', '115800475809612886515', '103545629159196000620', '111771137426879353123', '101431130901814842917', '118060195966019127791', '117837852833748735044', '107508742898313609305', '111694424168117997300', '109196189235775574810', '104220541664395498712', '111270145240185279834', '105365868178570492752', '108557183829263545449', '113284787225540728296', '107396241442191327319', '103440485086493942654', '101446818671335185668', '106162749765516789339', '107640279749845902491', '103181848666629026653', '110021443357362778592', '101495480187227078065', '102117064202008007074', '106036588985851683922', '110379434263550065795', '102589903375023280219', '112356996706873234265', '113854591964374444379', '106653678649405633861', '108463797808577861961', '101447097041316820970', '102615863344410467759', '114585093933667902024', '100953982416378023035', '107847474107489231827', '103211692610941731788', '111836967600994390441', '112176066413200595179', '110068300282260390649', '101270997502474832691', '107122613282688055386', '101046956874219339437', '109824317681535301966', '106914566445906930085', '107762769187467819343', '111042318165379633986', '107691344676291850790', '102604209789264047420', '112130961481629219718', '118131555733179100249', '104794915167914988036', '102001774674190160714', '109392004489339874816', '102519721232445200810', '110899709105002539146', '117126068236790799917', '110385399973090519138', '100622502206917250723', '113799848912045378845', '110002405786613212411', '115654160414327824330', '118042390853009385714', '111212464795893853176', '104573298949038834961', '103345707817934461425', '110151942984167040892', '106660876363786203340', '115789634223051415842', '104083130541705011920', '103085684564325667097', '111803843720416020702', '116433293835224916061', '115403230789072643755', '115482469090044925041', '114443254114158190387', '113389728068653953185', '112005390393978914665', '118433071082963910495', '111045659538457768080', '103958441795544241153', '100716257042748488611', '102291255762074918695', '111491466248379228198', '109258622984321091629', '116775118666102649170', '108658330114663074082', '115942789003376887598', '114187414805582046708', '112391268677800082202', '113413631123566181546', '101411522670835290735', '107014499721205083179', '101882195464541547154', '117843617175570491498', '106777383482946175314', '115471815788264818704', '106003083348115116058', '109440206780255757543', '113976480120863098643', '107101914208205976103', '117459616341752158383', '107281146902978462832', '101432770709896418691', '102170431816592344972', '102315706662673946809', '112551456588932309575', '102365188638805021921', '115687178185726009185', '102207070313603828427', '117603418437094018321', '112995526873937214223', '101571483150813305324', '115900894505130165156', '118369384868249491237', '112879841470105543012', '106002545837976723927', '104476158444060445287', '100974258168375166691', '107966298757344005424', '103037366582313115962', '115970504272079730559', '118161154785371686397', '112690277629839121383', '111003269571421285363', '102190493246946072611', '114424163811716070551', '111283416647206388433', '104801071255171556839', '117185877001714843452', '110421807101712244643', '109406071805900331397', '113393584039379479006', '115311727753235477769', '117847265991358523564', '110103226273956609195', '106866383875255700986', '102922738525778464049', '118177253929143457733', '108077086504877995438', '106987109527834312993', '108112557629934458248', '116410755705124683408', '115541942049354890937', '102504420622327805702', '115724768230571629148', '116812370384559434734', '109712012265873583539', '113938338232106398104', '113881433443048137993', '109325518935169286094', '107720718922832943625', '112382791805996029441', '105033245922189902491', '104424534812760985971', '103709022883073276752', '112589968131171571528', '114247048849834611286', '109075868947205978844', '104531828804862316762', '101033944072876470041', '104199247853030480536', '114867252198960672855', '102170031868537722022', '115020920324331583957', '103984595971776502972', '105275638908165446414', '106632595242559957769', '103027753228442662711', '117283174365630308265', '102781315536557513596', '108952536790629690817', '114633750344034731834', '102586640510355796146', '104218858559301925681', '112856852069290617900', '106835527256079594526', '103949261056887216874', '109335263316654128446', '115615870972868802243', '109569752209143183731', '100031852932201570050', '114593467862729839152', '104523071668121229797', '110042512432413772727', '100581319222004491114', '111077535166060171805', '104045280332537211299', '101486204454724257393', '102221942940843100503', '112508589247432380775', '106310418483081420621', '116420972797550666132', '113834766641843352499', '105530753282729938938', '101397516006687049364', '100487950103199493141', '105315380199016588289', '110258289774916949765', '107192272269700675015', '111048918866742956374', '102727246003134001212', '101152055743297768078', '111445100695266871091', '117516007641841267226', '105216491640488683417', '117344786984788205452', '105567850045961589845', '102774550708079525885', '100623276740673202144', '116143340835822342380', '104012317304640704591', '109116913742369249767', '107066609145001672622', '104627025690110539477', '101618542314456546606', '102146313345435500422', '107421445110022288522', '111191026976666239641', '107935490847186075336', '103697774730216910679', '114246229347349388834', '105841851351684982094', '100679131071077043250', '103375542801396350118', '104833075789540575760', '106737570598016044030', '100953685537452827969', '110809308822849680310', '116261692325842255895', '117871468039926340471', '103765013042311928518', '101560853443212199687', '105851423593223682568', '111000579003598090468', '108487822477374389081', '109010889495678536605', '101109783989792704485', '115785601687445616629', '105242052952566062929', '109574646945769035522', '107323726887023845557', '102216611683321010999', '117917303976733945057', '101961537456676830624', '109130419959982890624', '111271022648828756409', '112994448426929290142', '114924614550649992893', '114136896194133068248', '100200702307013618078', '101275179870005929648', '108292626386548337225', '101709009597213137381', '100855797004917861250', '103839604733587411268', '100601380617286837373', '100295910243260131330', '104099166970678784919', '110807482166400328009', '117186458716523937136', '100102136737035852528', '109773303059260911313', '106591896777907389210', '110169221310171686233', '104639333291066555098', '101241183982769454084', '101245538611244626062', '100534424316001246594', '111983961140937248134', '115816891483368121803', '107096716333816995401', '105051985738280261832', '115577054277154526267', '114241688322712655466', '107855400061191706587', '101252271355699391585', '106532709318061274779', '100698655987920162334', '108623241107635805071', '103462873333877980961', '116935358560979346551', '116979537911597592349', '107714711613847705349', '104192008501436536872', '106687590803153376067', '111228728110367446282', '116725716107094536131', '113402608391165594923', '106874607765859343033', '117287523098373414196', '105211545115895564854', '101170858167877590028', '105422295613267466762', '117538318948936230910', '110221548312889137523', '112172895831966524738', '106492929996498586023', '107587687879128613513', '103105365164405168603', '116591547779390586705', '109960739367065180670', '118024358482942688737', '104857187449120013195', '104704541862577560389', '104279107049574225556', '106357905229054139137', '100361218254418836871', '114810779645279671611', '101573343004737116608', '103604193838758665134', '117668392750579292609', '115583751237339080058', '104939255652455358237', '114769300137901408078', '118138281859433771014', '115918873633072664460', '101822457058478980551', '115632342331199040846', '117940248540164048337', '116965341785175229484', '111503532778437568057', '116254093242028684836', '105345566147236475531', '108579483581758945911', '114618043230336563405', '100487760134156266945', '108702243956983861993', '115080066552092609337', '110265788529286523789', '105001226804902733960', '113417057124767990937', '105813701068511899418', '105421360534824524100', '117977815648164406934', '117808769255840350060', '108855200241623204226', '112070435700031049440', '105295310748303489298', '111294656615727181792', '112423617621024562949', '110651620964477160777', '111089898631428640442', '101940753538647020405', '110712675707709115491', '110741836870151771516', '118400417455591622079', '106672071084690265777', '108295764867109612313', '111318286691007084371', '106133647632447653039', '103857459148999991693', '107290790893215879513', '109568122154354548550', '111401917971052287374', '102621822503935788417', '109757121803595096366', '110914779605699995714', '111814588105295154455', '117596712775912423303', '100342703577899262613', '112754494243408214081', '108270712126515524163', '100052700728830741395', '116316884445587960365', '104840249659865132742', '115780372796647083246', '105981334042058418898', '113288065693155890597', '110089937981912258343', '108555961770005610880', '106502607787729635990', '109987584289589960619', '110106586947414476573', '106282393164894870519', '109407357222310478083', '102536973315470425722', '117886972903697806441', '109434154213098606351', '117800110659124563147', '103398619959781525235', '114834647370494857382', '111060030077135962736', '116579870370062666372', '102604554618567108175', '102093662580926526519', '111759924371065234455', '109951598646894290458', '116014356362508115157', '109697647409576031846', '100526331844938002329', '109411406785201484035', '102536991536106306279', '118247641373061037233', '110221600888730781060', '110965210322765659606', '106258139490268181465', '109206587809241363984', '107831532803228906719', '107932155429974750880', '104077598030476349365', '110378594959350757709', '110163810147675006375', '106772544387169323774', '111427269484642699888', '114043638225438662692', '101453162215777563254', '101155954181843508444', '115849374796259856253', '100613758025489484795', '116438008483670682641', '105228937789154416960', '117671073662238204726', '104346140133621551710', '103583604759580854844', '104495868343034960513', '100345329484639766661', '104345801144381868824', '106519253237690493844', '110650154045349064822', '108600740759841998871', '105451978536505503907', '118050431528022904926', '103150328351925153314', '110729159808906909328', '113041693148251706037', '115356630255487796751', '107266675406427148556', '112084832444408452740', '114910561715997013667', '102713421480026606531', '100186710838827407666', '102890159748280606098', '115307003069691533470', '115553603558952198883', '110188450209045376443', '100207476365394910924', '103363342114971078869', '117888860379667170672', '115807723984369772514', '111883881632877146615', '101604758566835021293', '106195831571853627393', '101130656339668533532', '108071585757096529724', '111448092297495464248', '103038287804535196503', '111636644604817058900', '117041443305174009289', '112011605270017123101', '108152252385291870699', '108575961322871913333', '100512649718649402368', '115145812983523155770', '116405848330488816788', '105480734764563996458', '102149364210050358793', '105876343419910725543', '100650151500810180534', '102224985411798848978', '118063637485562004479', '114301518918636810892', '116438603972340062055', '107156755577155979497', '113383623452399451554', '104441415299714065572', '116076186919541013139', '109601281034422123196', '113381483153888636532', '107625854097808986033', '101379876584560582171', '116267384604818495277', '114618659070244006894', '100585772325525711838', '104448948219087403805', '117749865363674826272', '110357198582053736779', '105489064367742025310', '104987355197229091786', '103677797198301167861', '111257212321180028563', '116470953347091968861', '117360103600409535739', '117159589190836164630', '106854769490241988382', '116452935508617689824', '112145951608161981842', '107538503004482952974', '107265412936882114192', '112526208786662512291', '117721846193885821185', '110738178351405818606', '104582250927352419136', '110279358252896773102', '106759471889350611686', '101502056223282249599', '101174714442258565659', '113119946144896349087', '103472952324873369088', '114326903094745477264', '117437841282077965369', '111586248332282735415', '104515053455533706984', '118163822095608736409', '117556235540402405674', '114813729942739673295', '103355828447574595701', '113133925816371893584', '106419752011171815265', '113859970559545588569', '110549739567411012555', '114352415294077760776', '105995917556687149007', '104862998516491558437', '116142452604357423186', '115134622188556189501', '100274807456209555586', '107742059751171695340', '107747666102379771298', '108842492591796792953', '101423092138897438495', '116817338726035926918', '108549385320967837769', '104826898588030785682', '112693485303690368068', '101059133757139216178', '108312944398165015025', '108523337373444601877', '101462942800226460671', '100303384683356105458', '113006420670449946421', '117903011098040166012', '116672282660593772448', '103226166584311556924', '109498619850260739772', '116937581022538783895', '113515065173321288367', '109602109099036550366', '115059883502484074676', '117134203809928335453', '111132594517063956644', '115074742580527848126', '115891230387484725858', '101387092275812938679', '100080124053175377628', '115588769028583140496', '112750162166257666575', '115150834179663036977', '118239708588385194858', '101544238620721926724', '101304879558095647917', '113607881597695397209', '116805285176805120365', '107889816939032412666', '107484261818025698576', '116466722243843357848', '116913173549547958455', '115598521511211400892', '113096993341203159664', '117461136321424092290', '103576052018604536045', '107121825569855176793', '115135005437142391944', '109867857011852916441', '112110858722565266390', '112999253285147253060', '116550909178789460578', '117456894611758161175', '116533362792581605947', '108424020240415471405', '114601143134471609087', '111790682521035049601', '109519872564472121189', '115825356079649831108', '109384784623056332691', '107068579181420387366', '108630215885594244541', '102312438958695854492', '113698453258677928252', '112247611440196124954', '114503806689722509896', '101698568710409127237', '109775332677855506641', '116315897040732668413', '100701164261086809790', '104140914211678254355', '101536109537442359228', '107121061735858585864', '103618862132298404107', '108932788008800738020', '111577433381708222371', '113564907805644842158', '100415345527134852246', '111877999318967969519', '104137679633229137043', '113519537265944504829', '108845452184637335176', '106048688481221945110', '115963955697106043086', '116085587120828893542', '104338889675518594604', '113233350295755316797', '112526176943879675329', '106734796011714755852', '116116167312065511129', '112184170276510992767', '106587101791064367906', '102909861033691159475', '105002082042672500302', '101465854435804471513', '103068825327398983563', '107375322906605680039', '108346637271615594833', '104373203278186232612', '116929145821864917460', '104511933936275853523', '100860729679253738753', '104253774537638039236', '100454410388149159869', '113079376038667232212', '104554933457110625498', '114853458007065354930', '102633142172382046999', '105405454751548857147', '104553134624556200907', '116113014152499702246', '110581693083408452344', '102677360507146038290', '108904607472189043979', '110031535020051778989', '116862971710981267949', '117893862702691605455', '109177683659525760187', '109756091596998868747', '100887841569748798697', '105112620193039173363', '117580925821727692155', '107380709199522756628', '108227564341535363126', '109896764299719102648', '108502544742527327179'}
Community 4: {'114423145273709817805', '111588314313287316589', '112537342335864964096', '115963243929073566382', '108662507824801010203', '109436928690482684930', '105434025820555307067', '110864599894996178174', '116340752990479891273', '110728400655907449839', '106593630328040579539', '110559018888524898425', '114119384526847074786', '113501980170251677306', '116812224748840851552', '117682073377635126182', '104379426983447044197', '117514680038249088315', '102043041931890418893', '100349743543849719885', '118114100384196119531', '109926133779653541696', '101729876178674932193', '103335984282203293030', '110945425517002025133', '116149376268649704695', '100195160912619951177', '101017472266976831304', '118112472205861065835', '104043085764150105176', '113094870667392694450', '114188326700676605904', '110645965104882750945', '115393302956046270283', '102067090474878622889', '109207544331100840086', '108941286896090198473', '101412187509543621120', '115018937616735438807', '109885335490987305197', '105378371472827818281', '108830428717557629230', '114110270536631124682', '114032556613623781205', '113939021433958383444', '100426271418081701134', '103828137795540154939', '107593789216787419587', '109479560363527324813', '107454249811417900969', '107625980370837090655', '103709698412745335449', '104349707131288795771', '111138633779786501521', '101213394815463175651', '101146101962111637353', '106949032058167137032', '108160596056101201559', '115656953982220329528', '109917009403325987508', '118064120829893581655', '100275456048197983226', '110568294711199566930', '110758207861140890081', '101887333571450752621', '104979585499014359056', '108934986640068380361', '118256754889295539371', '105806736213806651424', '111589945565341983877', '113216296491592889025', '108844321122398439802', '110414786461028276428', '107918344223244771723', '103118053605545281379', '103710082118481937888', '107437748151088560021', '106376239368339615111', '117176665307498398328', '112069484480728694214', '104887231858872290871', '110701947320928059372', '100544749371203584215', '103797883802077039230', '100700353232522827431', '111351171744398382625', '107624717549025361680', '102588676612579097006', '116541000934342743135', '111876534035178963850', '112218048011054022415', '107889058115652610241', '114111164551082058182', '113859053456156050664', '107014855752789037160', '108576488463343988020', '115496635138384275628', '103988873912847692831', '113007670073596198453', '115261692058075790162', '111126328522230364906', '109746596898521745374', '106825650827561756459', '104244326302398789616', '108509481686815418009', '113821044655582143224', '103197489440932684008', '115660370796243395555', '115871087498215835363', '111948405981929312054', '115121537413739694349', '105057100271206569498', '109974381242618334005', '107403479819842014330', '102360811514154482381', '115291834251772471034', '115927076124225793802', '114745349774668589398', '103092526009146643302', '118395174788413639502', '103827868710956149500', '104712985831670497069', '100584890113273950739', '104708586006197525495', '101918078221812862518', '108901599657368504920', '113279415187761428204', '104631802904350208544', '112095638394363543488', '113262162456081578291', '107048563193682425629', '110269619335002290527', '114811017941155879929', '117942984975095217247', '101470882576466949491', '111483447945995395177', '115133799672434714866', '116601320905935665058', '117176908342196183611', '112305522671697962831', '108550577148274950988', '106630570316122323308', '118395123252969969687', '101272594219524514548', '118352535285068464866', '111332331975713255267', '117936601848869921307', '102158481104549097202', '113820992444468927064', '110812161686368163259', '109643446607047710612', '116112254158337841944', '117411039569475939618', '113107311999041005956', '101207501484247369165', '103623101604905536099', '106156911251501293793', '116185432109778337318', '109996728608068255829', '113558621245697237161', '117848913991908267840', '107250534651235272578', '106638741623864712466', '111028954398950346451', '101151081087836097808', '117316397283617838894', '106648345690389360149', '101360588077358765523', '111490574504620054209', '105788008092694912627', '115643178360029198748', '115465320360992367775', '113987996740403605089', '113959704857301041277', '116761317580495279064', '114864597887356963250', '116626920358859656801', '115473248807702818542', '115463787626083512107', '111670174652522104431', '110991277612525920121', '104376908722325864673', '117910049731484591864', '103058008781499865294', '110379121387908221753', '105655167118697614670', '102764223057688580417', '115375019307841335136', '104135069576386108942', '114948959016941481770', '112893067332457127504', '104667180095608297346', '117914679586910303674', '106383062414578378285', '115511612107004527821', '109960110297450500881', '115040343192582250619', '116544087389809130831', '106930353525178287382', '111492265485578311237', '115776498080364677395', '115132130502965704600', '104443705456847157987', '113011991260557689823', '102685650531277165132', '107754696598535747955', '111585581956730395692', '117864742111993576346', '109468427157459456396', '104879908368196416013', '105775392053861278808', '100026978292580436104', '100157670154620604789', '114553528288744390394', '115496151133181718319', '111199063664406296634', '112441331564101207216', '111920982317628105320', '113880108017919635732', '117445451460822274072', '108305344359681656070', '105058404529801301215', '118218413582579972776', '101819596835317284161', '106943463558816906814', '114461763006605768331', '109844235974509662668', '117958294424114190363', '105860373153472371277', '115034155554363399258', '108526245860348689933', '116636376764958914619', '116825083494890429556', '105634197706171121077', '115535538363305223778', '108838708515381826540', '100282968888030008096', '115904086454570169295', '100316335837675973507', '116625821572687294885', '110925203095754163917', '116687413508915556198', '107834810286803058910', '114811243963061520278', '101732559467217160653', '103564462325392945643', '105804664540125819976', '110765037159669773691', '113274733957712218471', '107625906771177664279', '112883699528692909137', '100492796306342656914', '108539654154324707715', '106864403509249232170', '105632441394665813037', '108007461250883878522', '115417751500960041796', '110084553581698391906', '111481369210749797934', '107450213344480075014', '107195212023404839277', '104385353069622807573', '117308665239285879456', '110599593244297313102', '110280886606383204066', '111711170488988925629', '102482255020798924355', '112221282518865202291', '114954282883030818299', '117769684511228540617', '113173251146702296169', '105997091070573109981', '109470545745571069638', '107246678313210357145', '110168666517096337148', '107985102860141845294', '109808196188358944291', '100408283666457839929', '108551735205449714006', '102173917512008830217', '106161788594395281627', '117529942210282462430', '113856006709781039744', '102873959173533006371', '110718928615868885556', '107654028127583265907', '106815399192018856596', '115147827343416119816', '114031859775696166608', '113953592758896789108', '105855483856761845406', '115394346709017494306', '102058785523676490843', '100786264875843183236', '113869720201946939140', '105306352386378222159', '112440522190231493930', '101199924518713782010', '101755171190730897971', '110405747555663372583', '104436379622461086947', '101887041606404288871', '111022243600121278114', '111015729619485973957', '100533792396188692558', '103743130668254264029', '106493961146247355981', '112598206391515336167', '108503496150171563211', '115211787257319267694', '100273633906470013910', '111673642072127497610', '108667143360206744072', '109643183984435716703', '116368691793666334377', '106001943352945319940', '107197833333831757440', '104367403769921772912', '107207890481426551395', '108858456273662813445', '109974537381058312591', '100681457459676204535', '105882590955173131262', '104632355590323256230', '109602789071516708743', '109816460042194544517', '108863836588738530628', '117230771267655550614', '101198750975851191079', '109593947004281665697', '107004827700283141596', '114415909503490126071', '117177089600960301954', '108304463306829507244', '117053173209215161134', '114951205049465295685', '102669873173426184862', '113715158183527511082', '108597452361152433617', '108601427100401548787', '105466596306740968847', '103908781860984840431', '109386014561463598502', '111731071122260914110', '116790754553761013184', '107850149206648612691', '107036198032596371136', '108479091951613759982', '110879127527934964562', '106135889627409686671', '102047150274351472980', '100224201035383306651', '105187965518831391907', '116567038148604835977', '112871283957221888143', '100434103201790753649', '106273569552091104110', '112578490274981020467', '105307852589244764657', '110710199958003189424', '114724118300194158077', '114706953475523539994', '105804527353518328861', '116003397990074182750', '115883846285938028325', '106157249294104226362', '111604381071895585642', '118141140815684791742', '110460762708524496152', '113353300380449279185', '108633372604812104726', '116520359450064969367', '108041152760935752619', '104257622132000889548', '117618348036211786224', '105988282833081406137', '103737089759228911178', '105564138050128741446', '117212522931456629819', '114669908771909329400', '111295385914583588887', '114046859929863521449', '117954790874574081568', '116682489746740337302', '108419358687282804606', '115677297275834147827', '100725467967838527499', '106485871524118610123', '105630546573679029485', '115750603800943659726', '111727826018928776221', '105959565557791768260', '114033531305613214626', '100517806769636492372', '100755716972413496023', '111757923159267695683', '109355952162273917694', '111808952234160903375', '110216625746341422615', '108140118537784280182', '105980319100819970166', '107701430466675423725', '112711015816823323878', '109773475811600792497', '116394617818640942773', '107862204044204412316', '104656352640134981885', '116623758105982693145', '104730568280893270306', '106703353277592882410', '116744812192535694584', '103108690996120298090', '104323935384741647313', '101347876558744552586', '103857548247826633978', '109091939256938929524', '107202043371346560774', '106305053804469998709', '109485737892460402457', '110040233421998879459', '115666311934488754009', '102617660146308494713', '112081185400326923392', '105431160751253834522', '114626365806084643178', '112746947348183292045', '100493582774155119042', '100959057962370760652', '115076243046200730728', '115328367465788418988', '107245364702676772500', '108014381136331182209', '102378938321273844970', '105762037144526177876', '102256608484389748856', '116229616134152031538', '117120899220348900166', '113805772312416777719', '115217528164294765660', '108341679983325077337', '114208209189461132868', '106649929935339369458', '109353176733515922626', '111958386598662649491', '111162743382288619023', '109193752130316772800', '101042665084037662236', '111626522189095895987', '112886024288546693226', '115744370283421704635', '113959203352502439963', '100554718243397403417', '117731550387841065273', '104954225479993640431', '109289458378569190327', '106420325568770340130', '112083908349302820341', '105657331578910218297', '114826548117448991451', '102370347732140106252', '108565352233409476904', '111914713788978840821', '114837091941392020931', '110638249768709144876', '107952527868351507023', '115840309602529220579', '110219690264668910553', '100101688249759157427', '115746090868256921025', '114172211069297965139', '118216916439056413407', '106223694077555758612', '118357972882932980402', '112835596836451120582', '117776140676058153901', '106734686046137434283', '116468205851851764343', '112169345442528033366', '111531284607886845559', '107969625644194200590', '109898687023475421640', '102517484322947859174', '104809193498461809525', '112325972560437457326', '112638358624483704639', '107821206853577637841', '100016110681991167609', '102584583696413456865', '103739686836221835119', '104646422389630473063', '108682630520554532926', '103538615317424427713', '108097846532658059751', '106197557981464440064', '114499680850145279771', '106393931081541411717', '102060295428913576925', '100546319093288424712', '116060988245107717290', '101473672838996083189', '113246192309835417741', '103604249238114506640', '116630204676985525284', '107059258905150066364', '111291884993851809207', '118333202716380731636', '117946335694878681572', '110679647430259694144', '104584322313471697637', '107487229529601218734', '110636742979607726275', '106186407539128840569', '106284867618010219222', '105984918581041314420', '118362787565743943133', '103654739059775713625', '105798496313955265874', '113308262335042097748', '102124007867354855939', '102173349122411290580', '104113529568978164086', '114635209083263014668', '111752388450661763568', '104426521002896211164', '105621005052753852855', '107233955438515492778', '109526388403138671732', '113570271720733251759', '110523919056330031501', '105185739489111441689', '111781511209719941000', '105548835547484945657', '102494452477502039615', '110544305957766172004', '112908575472041006742', '108538588905235310311', '105124533625157539282', '112780481781338103988', '116630250399135648657', '107779025203939874244', '118013397729543711198', '118206880284924152370', '113037548646748647745', '105936936751913099840', '101736585026135466238', '113896907556049130248', '109157925074726562412', '113279353326462536285', '101499410770285366911', '101546155389441427768', '118325835202302722935', '107268065106137403432', '101434589888844071145', '113021406548098809937', '109729589143027880076', '105307122700891838084', '101001990257901670501', '107951196831144721116', '100772959431098862192', '110034906324522165856', '106413921180212134726', '111895119191625228231', '108445889364771173000', '110144995773837065290', '106347369639411114443', '103230521282223425208', '106029277760189812770', '112107010601134550796', '102885891097712656710', '103761102792991856239', '109228491851739542746', '104529856348123793705', '114376268892489196052', '104152952384716366629', '114971273940015897527', '108813014642945247448', '110111510059204475260', '102788829471779007841', '117268329637505817604', '103376773994519234495', '103342042961389338432', '108351974726267810813', '114978264420250608401', '112736597175086259901', '111757945498024436996', '108251111005209506206', '118255139777980427460', '114028377323147001535', '110566732832933442157', '113122849211958571321', '116524109640884509689', '101948941646041623362', '115384926882875488708', '113055030863291439319', '109711914058504734181', '107002788071025694673', '115845709196894123029', '107779367319881895687', '100733262665676240648', '109024546198144557475', '106722885684392938458', '107396491817834632527', '108953760654523848778', '110133757426764459356', '112914914939095661086', '103784242033624132262', '105980080984017598036', '103914983438291100128', '111736689735286263019', '105125554476103978006', '104005925892689268590', '103487440983998994338', '105249778786454015884', '114685023358456466132', '101464943528130253130', '106459965177816444111', '113103005355604084512', '112873430628957494275', '106050971674176601955', '113852182531893908107', '106278510828146415237', '117642867747020747436', '111758581845051114427', '109924108808785955379', '112012476475141035353', '107010147434202364332', '115296253121301329324', '108920029891376209394', '106317398927126226949', '106794084214289817589', '105126913752959354404', '107020397674530036564', '105881771366352132447', '105723292078078847006', '102737683400639456936', '107402900735507110843', '106360749119848185071', '110273540218887172071', '105350353135669642561', '114919251411079793065', '100592148961106498550', '109333324113145117955', '114263289480870053828', '114081579418565252921', '104560663072173100039', '108597066322580421518', '112039880505645844315', '104326247484070740884', '117953236013622102348', '106667729510464379826', '116894043857648293894', '114625559926520946599', '116008424463675511533', '101994221435608343379', '117371215212966840929', '109224263264368163706', '107385631008475075897', '105157423208554366144', '102406246325474475067', '114121645990437951841', '100678877373684321545', '102955248514728972197', '108515960304046340220', '101844990462989201035', '115170278877753972135', '101292327494251658716'}
Community 5: {'105179842155417717126', '102324627880605024562', '108760601806965878866', '116047082186817037343', '106507235306330978896', '107248116770220311065', '115781322037607679344', '114733616638551802401', '112520600417277404284', '103755377817308425135', '107831236630678724284', '102930877727077641448', '107626878448133539547', '116954844191484693405', '107269510744035197961', '113081731461843948319', '113391047308887865434', '100820451732703844540', '105997546927235315566', '112877727626421018289', '109508116950388720365', '100266886495069305462', '100665078974669893451', '108829956601061419818', '100335010760162784258', '100317644097078530384', '116951498094410795944', '108133308868089130959', '108000566336569357135', '102691593604511160082', '106963885510258917652', '116880713452280386307', '104274144126009360385', '106522361774531359377', '111175585427690853074', '102680424065536795481', '112930004978090305838', '104283031552378415930', '113078386420515441545', '105316864513332778501', '114716797251441194537', '109890082498074315857', '103021937150998461939', '102711691883583480242', '101815063650498247541', '116530152268808887284', '101389184553022113014', '114569898294457871634', '102608776508440122299', '114490039330264150159', '116111219351633874319', '100032150156925946449', '117073805938017207685', '107333587086602952126', '103608480519688201186', '104866098708733251703', '116757176263391305794', '118224984181595210032', '109931371358785810620', '103758383247055353848', '113707482200560368286', '111781610150939040529', '117907082295652857494', '104304502855666707768', '117270178423503461915', '108010689076060714719', '114912226961663614730', '112948571732336697082', '117338378374337723367', '105631931017935418856', '112003940659407779068', '113891008171523006420', '107744042799552867436', '101300623943409946171', '108929735371005123604', '109790611971001782985', '113619968700131836951', '100555162448603417026', '112758419568613423621', '108818445883416660620', '113241166380718234516', '111743590223713642883', '107339895485429600752', '116860184734904725772', '113523231716981283287', '107979286340394512143', '113767731341428274064', '117780569907589761718', '114547034573007527331', '105180909071638634394', '103660206560330419109', '104920767546699629045', '102006253487206290072', '104893822746040773140', '105286719504431331044', '101536756509418521550', '103094610310978659623', '100156784740802258247', '106479657748804478443', '114145414969825515480', '107670253860420324989', '108281448742342740195', '100482307788312537491', '103640036425806429763', '109000827228370862249', '116382921992998164811', '107721595933475913786', '104047897282942521904', '102708079172174659729', '109646775356245455483', '104559805632312986555', '114088874852318920751', '102630587810059958311', '113926321134978339539', '116638964225142536142', '102986126191814437247', '111508465747088598074', '102108777384522581993', '110133271603111816862', '104595008864895047153', '101145354685470419437', '102911423298750722021', '109911385643906599293', '114592143269096100906', '109185655043897753483', '103325160449329262907', '114768761817408936766', '114108878741595496793', '104702354594609203856', '117300242853446831090', '106895999951123240590', '104920620934254224872', '113060179522013694968', '114861905114338663335', '101246745012318381090', '109974218622929926924', '107617889495988940310', '100607395033364872595', '117068057009953814481', '103323441864094289619', '115413005583347923180', '107784308904432104782', '108510782081489363757', '114413878503399918109', '114566345864337108516', '111705889452776222994', '114828104751845366592', '106888428169799744161', '109630410199032471291', '112446966860915961015', '102463401688345525986', '117735598251469639838', '105739050467479642533', '117481522313699594887', '107110645035864855697', '112097963590513967001', '111855500838855315790', '116869724400629436551', '102514217660045814435', '101220133937867886209', '114366937186013347649', '104133006444050827036', '103097618116766469118', '116249548478087771099', '111930088959804568166', '112973853018293268403', '101229132440582716642', '115810300128293091874', '116403632034811860507', '113270456974476805983', '108594067325982843761', '106583481282196350681', '102110267925269741480', '111409617808305551136', '103981703017773216512', '109477051280919273263', '115954475205198929847', '105081105034990760633', '117616536144997623911', '110397454461832844393', '104713047052752387264', '110652649366761363162', '100624737293421945902', '113353015904803383993', '100187562999581400387', '100902268485754617612', '102714908223232848313', '102213605652949444832', '114329234365277383332', '113052377978911270593', '108779083830614574048', '114036358866414956768', '117031054162268053775', '115705489256575023979', '109299590899851315684', '108949689088286698795', '115678453773566615399', '114942154910035489527', '106641147776458045280', '112819200758017228325', '111688710840393224386', '116620475306375252447', '107090373460244978230', '102224488046079781315', '115147068876004496905', '101838156933436773638', '107272183836646779030', '104124541187277294824', '112024904842210530291', '117304639182231233800', '116391542446853468318', '115018008170032581516', '105652582531103753049', '117346924149766196890', '107525716960985821452', '110541730160966241205', '108078770237292079945', '102303510461285330658', '106155908164432912961', '110892754049861563328', '116702854728559432520', '114215857112126799684', '105205729674454354594', '118441827513137270642', '102137740620868293938', '108610794489454916498', '111186605305190186551', '103061910589901222945', '110962193978475473333', '106272166624769438246', '111252761196385927326', '102731670368731246093', '100901963065083700141', '105960374874920809794', '100278777024997415490', '104651029377989385752', '109826927002856524232', '108087889322682448672', '112157872229407516716', '115148839020660135636', '117954615797986423438', '108703936993782616966', '108108114962142386052', '118214958525583263216', '109093486758180160219', '105997611900575076768', '101180227415433960065', '109164233217814470435', '111209809018384707236', '111509014173244879217', '114117953883859708719', '115686274987949593095', '102061113044056305638', '111134045655317063010', '114558349236861700913', '116873701620997076298', '115414587765802763747', '116700298453623468684', '111774997223491618292', '117668440043166811072', '111848830162727532684', '108465997005759579712', '114773104300282735507', '100233288738789493059', '109788182350101798484', '108165707780051914972', '112901175379675789107', '105259512034963370833', '116067202910045339112', '109983578001938068352', '107440970396008272897', '114399824955878112727', '116501911961138033446', '103008963082975341976', '114526697397172665997', '115284309187360614489', '117750861792706122220', '110244513421803206746', '105155780654274802017', '102109126579345956401', '112576294603996936513', '107220415849324803720', '105951645642167113129', '103521457342716495696', '100734236026977157909', '105642383705534462955', '110404183108172169173', '109155968255974850867', '117163208915556486518', '116814374594707965242', '108366246614218033085', '108422390152231812185', '101024304636265284312', '100605253248039820606', '113252184061974476004', '110943495041690427838', '107030812740859260239', '111908168251920693397', '109719222044673175883', '115297974724632862397', '108344462849800272713', '112963492538198017802', '107676721922416852786', '115962599400263432465', '100671269999211960818', '110513961696946158085', '100440270222520301711', '111292031224626405718', '105081160496944883755', '112315497003973501164', '106504154207292881562', '102993213922294403545', '105943246541353293114', '104953584466828763314', '112844316646741955595', '109907541494576330145', '100020524381176799423', '104213544411407470626', '118320247066134480988', '103482563426933677625', '118004227428575279614', '109743400529491282673', '105527688378437478949', '113190863583751129089', '117276287528129622142', '109653944147383968571', '112283960321448886902', '107504360479829861369', '103326722930578065940', '113300317111521254521', '112521725113852174683', '111622524395762887043', '104090130683315113336', '116035356260063502229', '114856537273915343880', '100409692915143540078', '115898262288776106592', '110056382298092102303', '102793916889851604992', '117714585917067648740', '109840191732172453183', '115338438910370449327', '108621502792846951760', '105113812773088949400', '100158899658606052686', '116188436343108802252', '100992026560487158806', '110618067286229076160', '108503230261783742377', '111908970951379773896', '107845512422840763592', '101046952471162986919', '107698055405057285533', '106966666745079161783', '117893621066991499211', '112556008475454519236', '109482013036698927564', '108619804047549507494', '112623189967225981728', '114024243471683897282', '113127621434799002525', '101887268515813292506', '101665628674827795931', '100889173451014541919', '101725661044142175668', '106204943346998065314', '111381754450961792861', '110863402895743920699', '116474642685963953259', '105000070945696813495', '115486838802900804334', '105815276541242274285', '115501236364279280376', '113704271974981293475', '108806217105907808165', '109133891367151747349', '107184535574701041504', '103723940803975914787', '112931353228939986189', '105313263062981789216', '100247987333341835851', '111959067024129033859', '109240347910051822721', '113793211913474478420', '114670725093600545264', '111138425038416275867', '105519988150379515152', '105909887622767450075', '108472446086621380456', '110415004940593765989', '110367981713317408445', '102937232690558851366', '110579039916802466859', '103056605890377506861', '115142513824651844669', '114780418758661347551', '105470572468876542607', '106915848822483014503', '103029870795404358045', '112026156535686371870', '104598103963009740551', '111863572897936803425', '102600674202541307518', '108054163956611154799', '103062451429825765035', '105342653389472551111', '101766051516995738930', '114123230918465111065', '102124054450151160717', '115868922505507348453', '116432942829143479434', '117578792390803009102', '106074110578118906324', '106893002828600610517', '108915210453909867389', '117442880245907942763', '100155716822234123309', '116576764255767377020', '102227275237515434549', '111084510184942099932', '116874653597380932924', '116060703107794340707', '107115723815241544002', '103884421350611737481', '102093713868502099015', '112319989078296773845', '112898594003203180670', '115012327986661486483', '114859334951315840700', '103022395092299856974', '100858947543915846708', '109843629937506645604', '111750413599882572501', '102177258125010955239', '111811069109498058005', '108291962991854029210', '111119904604380570978', '106113583779161099424', '112070327609839250532', '100263849367216137894', '104062682296417272256', '103496887477945006772', '108463543534306194206', '103207989531863280775', '107104255700580904431', '101980860269329483915', '105176603961718460787', '100358480982911814711', '111255756566854803965', '112080953779129483279', '112372202969800493347', '111822778661163391507', '117610357167801842981', '108658343174106516990', '101787788702955608017', '104185872705314246844', '113364834927427218066', '106432924376951499004', '104656917748986172475', '118131233107462519634', '109720281760977843891', '108594353674468470874', '112423643306042926494', '106829730483325217464', '106628382982657556964', '107218117568431155784', '109708541555215165891', '107346691171291577316', '103785244800322515633', '109715520706291213001', '108499277069482437738', '105701335071017055923', '105757395297579991916', '111479531412414271051', '108095848096589989461', '109215675627400205679', '107592104866410244858', '101939392094371027369', '115804671673356875620', '101634386795273554417', '112608012459962823056', '107242458713529772015', '117201176268260911419', '104299271754654595781', '117735717639335569952', '107107946616775732021', '105565313546534562689', '100927911016573747257', '106656888829206134804', '104416693529125810346', '111396735999181826748', '107456582417680620562', '109705029880653409119', '114084211868219996815', '112858427066035575822', '109611704655236401852', '103113975627737019491', '108037124134052116912', '100030818129808794077', '108696837616197541054', '115791145547911677178', '111878250189079346659', '112892446906016379314', '110496227342008590728', '109105113559414294303', '111465745043808618627', '103375729945424107539', '116854065878486971037', '112578986425031709847', '113619174388441863125', '116576497972934502969', '117090547812573367019', '111097102522228662594', '110992026197588864198', '107344382208104354958', '107227310249686842832', '116117533630561802957', '108208513736292177751', '107449811425404627946', '107502396038362444041', '116826662206560476054', '110732160721568464555', '116750422567718804427', '115639534357247880901', '105816904626442571121', '105925569882389863500', '106979346213614477153', '110178053208660072768', '111386202448674630807', '106029917470488630380', '115872504869981649150', '104078982324511719711', '106673026341168156435', '100374285739701782137', '116781238751598941118', '105933676648466838394', '112535041396863354018', '105929644731397610584', '110722372840499830857', '105092074639601124358', '112372692940946358264', '110123807109361246528', '111877878526957121532', '110790248373268222172', '102309918335734956617', '102787606434100566662', '106431554427557265647', '107665436894467092043', '109053659658721622649'}
Community 6: {'113653660907421844462', '107656088609554509650', '107308976571078250231', '107442098389523029123', '103171849011748425097', '113364856660738963998', '101127849472046131831', '115164860337044506876', '117935797319364093334', '104918778791450231500', '115030686745082711071', '101368553517408586325', '103662750627607288202', '112599748506977857728', '115929577701280717082', '113898464259240163527', '113776382996486725967', '115090828967006027318', '114089069528015035598', '106792630639449031994', '112931539494181042672', '113288550993250472217', '108840935971693805561', '110508570226436873940', '104382419077861101023', '115854344437995415484', '103325969492772452485', '108853501738089315294', '118189632042502811468', '117131320813354732027', '118207880179234484610', '116374117927631468606', '117786736249647649198', '112862819756646023491', '108486058508775411585', '113349485840435348751', '110318982509514011806', '106797566002443809543', '103095786308890475164', '118441261262955159023', '106341074292621233972', '117198316664830078863', '109899515423434400505', '100382076211124259598', '110872680209848450651', '113875632769905711628', '116280225022420174272', '112757647855302148298', '101860381122467498202', '104103329298922945870', '109925516772903505216', '107147944669189656454', '107297699164812496058', '104450760987525660219', '101214390565708255235', '104846472501579099769', '107968315902726063582', '105027117649033983317', '110325441582765648056', '108163314873379368770', '106473332550730818968', '105580657410093136270', '110623671098394321531', '110397348450018246033', '113554408435579863350', '113769616430887656533', '115526648727451857630', '103385677416480356044', '113134732777458915240', '115487908114807185449', '103236636893095396367', '117572628201563148365', '116271825444450444610', '109163265152716347295', '108392504208314197482', '115846431570128562213', '109071022939721915569', '117955064299281017666', '113926464488447669809', '111252173908780734938', '103140137391526341351', '106086121009771648314', '105076678694475690385', '113469309872759209920', '113351703941294630458', '104998691047937243499', '105443592673158871167', '103209908345925536722', '102864606114046363292', '107441351941537873915', '109518328768098946778', '106318111152683661692', '111906150610735538068', '108384201920217141722', '109296198272425566656', '110856928078733558635', '111221452655555194574', '117691391504351341685', '107234826207633309420', '112997561829078041002', '113234362691196511996', '106897131680157787805', '105305021153244967445', '103363186582409589918', '105747380233541976823', '102404812583412769241', '105232380402882830658', '109298660552407000371', '101485142151301995462', '115843987009474931124', '101899627764416588026', '106792757187551462333', '109440398756159359729', '102280090948155192241', '108662847002910718602', '108163948235528872357', '111348367721689165446', '116298207273891385223', '116312471061608346570', '111221480964536174264', '100250719688614433914', '102366211018261594737', '115652700794206679685', '103046205364039460215', '100095669250946685587', '110051674459506908139', '102071370520547943705', '106497949182730964838', '115570939558790629700', '116304368527992037535', '116688776113333213917', '103538485814301529241', '113415660053879558806', '109380443971181362791', '104550594148100994071', '115793605697271878814', '117982656933413901915', '104472936943065371401', '117841284165024027243', '104509438188476011535', '117152814213463502428', '105539638793359219907', '105772184918019707931', '111455687366448679827', '113544226688149802325', '115823184849129858835', '117861338670157326726', '106192558722661050950', '107125656733807816445', '111698503778103336456', '101261243957067319422', '104431730105423927774', '102600028732377608304', '111843509893927746806', '102115520906637132336', '108720580104414922308', '103023630550353054923', '112513856987273199702', '106600962597764825745', '104348272939478963294', '107471393302984843642', '112726038360301567381', '114236604403554541461', '104436810963597344168', '103178686874387559943', '108896556048763968559', '107399236458416208559', '114262105539842943223', '108427139667434015678', '113612142759476883204', '114695227348079690896', '100983628435231064486', '112322792296174873610', '104959239343823460659', '115299178946579016208', '114101531412846030493', '113801236315350503728', '113660720728875392533', '113876014261852640553', '100110537394626624225', '114533730002435254466', '100262595546646927505', '103233967921245494760', '105661426175012693960', '117574209588324536288', '115360979797396777969', '108271507069679184793', '107583042689729744688', '102893093768177858702', '110106930243542155061', '110098243775102510002', '113130289497152221896', '115939208922819734596', '106808688302434879780', '104065741868092906741', '105578994203183049510', '105231337123470904622', '113121873571555520751', '103644874693362221176', '109397461154116413309', '101483533411566453214', '116499594630424070277', '117544803150327265140', '111068086634127540552', '117109546349103307995', '115514397255079403751', '115957092291818573863', '101720949843787442951', '105901259206530390933', '115064756926811814542', '112142374030248016467', '109022523720071680484', '115419034874297747761', '106413938745023301285', '115565811010545226083', '117737986831845620646', '116716270814828722295', '105595628522122947212', '107366390750928722740', '115740425396974668440', '112263812916348440253', '107301619633585859479', '106326973089842217186', '112349309168476103728', '111283774701539308695', '102158400131040587224', '116167535417449776783', '110150965325447425300', '106268101536302326705', '100091126610411008053', '115739148151601573808', '100446424597147316863', '116674369219236722790', '118344481609730757471', '105171613925243410734', '104836380857591570260', '114277687548103339609', '111473156252105568694', '107428620158524532528', '104895617958403173354', '104532438030549979526', '104405539079062799451', '113153552814772196292', '106500980974633380846', '100000772955143706751', '116610439170211446261', '115125560263829197471', '107987610156389364877', '106470960570872432720', '104390246098751387487', '107033731246200681024', '102530002469402279557', '117540092106869387764', '113385341103270852141', '100523784851251213675', '114256398558850618905', '109018224010056005635', '103399926392582289066', '114149296801704936672', '103282208979302705273', '110700994347677244209', '109736551118253133079', '115676184622636926443', '104961406012654314344', '105910977869522122580', '108275858786853390989', '111164317158110828577', '107965826228461029730', '107047796519061210494', '104846054806852679393', '110376118639160300529', '116858411518207742762', '107006774883202795268', '109868944887238285797', '106526452034734966566', '110906874090916136949', '107420422968461975442', '103389452828130864950', '115671137696411026556', '100124914053032317331', '117959241991509944145', '108044554855018652985', '114790424055754975707', '111775942615006547057', '108814866414331647342', '115561753390919046363', '112907680160836608307', '107899204703103704505', '104747723716691230720', '104765077374858078640', '108621512304373089316', '112865942969293417981', '117624097520390439904', '110931663832372213287', '113901041381644461053', '111656128497597907356', '104925736987394070361', '106268128704132883440', '105353825031817385327', '115696978612493731094', '100319197841789445348', '107272985528479618215', '100397511207083609950', '100518419853963396365', '113198658097816476687', '114189915321533951823', '108998981953582461859', '117597061540365781107', '113117251731252114390', '106309865102961434205', '112451028459884611717', '115924787547381310437', '104964595516595991995', '112707199408484711520', '103278329781094743377', '115017188374689068228', '108189587050871927619', '101041324078144085298', '103541694080221120019', '103171792537999954762', '102337712650890824703', '101336441946387245415', '115404182941170857382', '114009972924169093710', '101146901041476917670', '105374700688270765519', '112809463309380151745', '105105586718784650031', '117143263732114637225', '113524745665911089922', '105390651426983179037', '115989323496360706014', '115946099334356565635', '105781158683699563948', '104531609977012265422', '114668932913459899449', '113116318008017777871', '105133105430653117838', '111623257688043413549', '104403266059394158450', '103132220267274477457', '115564720243320133605', '117989653555276812911', '104622737906757710524', '104517033820475268600', '117693415411676715849', '100264010813126229552', '117795594798730696591', '104169985790930139516', '111461898615826577872', '113656904056585342838', '115739378269261680935', '103267188025451315148', '115947571425501492839', '118138821734976900347', '108044575615821756919', '101701640282177869919', '106189723444098348646', '116992221479414639679', '102068992772785531303', '118004481840782880691', '105390485883966445268', '103165779201199313820', '116881457482420953115', '109969779660139278806', '112278451427844072836', '113166718268343560861', '104427283534021468303', '105700998891786287137', '105847768243032813675', '117209217835578916051', '115557497211054525116', '105382907771397302166', '102227492033836961955', '107104993341632204554', '117460436454825078922', '102228255686699548802', '108159551615224338529', '108452317856022215642', '105757929388673748603', '111532818340136087829', '111538009015644508967', '111148929145535325154', '108453998956057043117', '105152503384268783597', '104265422458271861932', '106173147647281871985', '112555534027864058220', '101015633111517941788', '101629211371073711149', '104122322375103216687', '101257636214966851995', '109335128416475046154', '112543423342469660527', '110260835359860048397', '106668108535610527191', '100715738096376666180', '104723263609203918996', '111501187421350616642', '114238825882006954970', '105552352686650329334', '100437988432162524454', '105872725860757129361', '111372220218982190595', '114426456655960013419', '109610954243983229925', '107062564884379657940', '115469260937373930959', '106486395211771793220', '111438340820209164149', '105722900792713093105', '103952215474318614668', '112056268930098097280', '103012564142649561853', '102798806611346310777', '112723461043687853117', '109886504130820190430', '105654402935055061044', '112970321880835978736', '109201681846030076792', '101260531453601316982', '106562098324036573993', '101092451748723511266', '105779578704676468417', '117694457004628136159', '103729705183250079783', '105567868641589978059', '117731151863953390196', '110352049954858592591', '103690620143042321186', '107277119640054382436', '115793765515193253189', '110493785915567624840', '108106577757630112470', '101586829715253619254', '118254993345625377660', '118252144082271575604', '105998023556076570123', '102199777787314348675', '104339138130317290847', '101152179963987038422', '112364132652438722780', '111091089527727420853', '116836636220296477145', '118246412183062133215', '117377434815709898403', '107588868062388296338', '114685727151899977785', '109042698174920402721', '114941303923945094339', '109757962875275036135', '102767275298304393251', '116392658123441019666', '101787046545130034306', '117174592127579425295', '105863752890638321422', '109024292698008549100', '107100642404466901573', '112665264770905064550', '118141566739575068041', '106577977022997618634', '101255108228486541311', '107534991451098430533', '111958164157760496323', '115270991787918797589', '103308103396841418331', '117739421851088727613', '100043983748387666472', '116891109489945023987', '115863474911002159675', '113217924531763968801', '110572811212575989418', '108082478497335384404', '117287572397659735166', '109938202835872364257', '114578425873988991891', '111310990991240556038', '108176814619778619437', '107833107845497630206', '116542814496996069645', '101844248571144042569', '107762450179505115601', '113799095339905675003', '110649446288671329044', '115484551319269885419', '110981030061712822816', '115576399461656339496', '104233435224873922474', '117611065312414142261', '111769490746901950661', '117180018219440917069', '101886706065800845176', '114922330087039874214', '115503173849661451586', '103907806627406122152', '115263904839708277756', '117231658988287858700', '118321989430962111396', '113510708635005328461', '112198627258727043899', '102545157386069758709', '107744400685777367953', '114979733565079457374', '116222320726437821510', '106197214230285837231', '105822688186016123722', '104681313125038107957', '104884187785294504654', '109412257237874861202', '100147097284628132482', '103861741370066605527', '111411000349269479772', '106368943303280323262', '113279226615356679403', '114763987610593050890', '109967027135756554055', '100193529331792590881', '117403884645613162847', '108119400159597000824', '117752576712509906117', '102950241390416468435', '110591592522706991645', '112515155020661989307', '102431068097019314437', '107195259403080639253', '102105845906727440764', '118004282178934182798', '101490281285978008724', '101005240119432390037', '109777274122671124391', '104516819846796601045', '101108182318641780397', '111366756187576712071', '101829918821056166648', '110056760145548158232', '118320665823821681206', '112326867483489579883', '113619286206637523955', '114433068639876567319', '102539381977877483217', '111336527206042452530', '103253561562112453474', '104921704809958290114', '113857184524447970366', '110103641077948436261', '105729901667343281584', '100487357871715234158', '102629065806297098781', '101379225657410027530', '107167807339989673159', '106416716945076707395', '107008160233741013353', '116470022031391579601', '102272237720889270534', '112141931042568948106', '107561810309477457533', '115887013827288855615', '101308829437436728508', '103769193905083044202', '112982260408662840660', '115558165321588976909', '117388252776312694644', '114296594113987287041', '113291236578795391211', '116391680965298883568', '105647897153052672470', '108640673873589796416', '111847681338536748529', '101798506124778677222', '110204181654158627767', '100438603620914963861', '104774528326015245789', '102034052532213921839', '103729265970315886187', '111360899307903501222', '103503130802791609321', '114999153204626637344', '114519877662741226877', '107117483540235115863', '101849747879612982297', '113805478630918777008', '117854933111495020286', '105735158965333960126', '112063946124358686266', '115037313319624350537', '116162639954691744160', '116926420836139796850', '112415246342451822246', '111849783067506082796', '115459243651688775505', '107349307374942155906', '107269778413208710799', '109179785755319022525', '101567641239571518754', '103100496883422151101', '100176137549285310152', '100159208307242713183', '111369451688088447438', '104808196767244382094', '103403824431405645263', '114522811866073303399', '109909064852262587287', '117713069287157269089', '105485925499804329038', '104896279899522511298', '113627804166769379647', '107291618721521207171', '102648694645821132427', '107281211279730540941', '102923147893327767382', '101567365967235844307', '103913667133017833275', '112462762381208213717', '112787071183546356443', '109189973231091206874', '107503635617395328870', '101692079149381476698', '105396579201840889208', '105465481469156419624', '118439893102421656380', '100300281975626912157', '101927752951125284877', '100721679322847841821', '110286587261352351537', '110309325486460240747', '112420333293968697430', '110343155660936962784', '100612175927429294541', '100269980559891536109', '111991738421750230329', '114130061198770128465', '109581870574956225297', '109895887909967698705', '116910893460383906727', '116660322443297287246', '111008541286524404623', '110145704806254434189', '117616588735295689783', '115655034901162574758', '111750438686215644722', '106914186897370535526', '100663067123108674343', '114807857936336465478', '103510189176184025105', '101216585062040520070', '100834378485895409468', '110666591989176379479', '104819676707369342371', '115106448444522478339', '114207321496851103552', '102533732658641069172', '101297850423506123818', '106706604819584752598', '118315541031184343614', '115403856867272859027', '112336147904981294875', '110450133026062729188', '117626213085054494709', '116116122025302548066', '117144433715717656565', '103316567668162174014', '109726313627874168458', '107460400955464713852', '112781253712657377493', '114932700939795553621', '112506923444042812138', '100929078467025616674', '105922903554346477204', '101307099794854494980', '108077530448434441501', '117555990096315491864', '106869490400611014916', '106717946845088683921', '117034807403884912887', '118208981178274482940', '107753428759636856492', '111506512994181681852', '116529348577058796728', '102976465024742837897', '101466865176532638218', '108740570618849247850', '113884689271621474479', '111164228693257897305', '117161448276820267003', '101973709983478964185', '110260043240685719403', '105784289512144080493', '114604649468155466794', '113557139581854283975', '112859244767729828637', '116170685268890575820', '101185406398932804414', '117950453145750849911', '117690470627570483269', '100313449630224835004', '100535338638690515335', '111654284395316165338', '114910148450730070664', '107815270965423912995', '102385696201614840807', '113649072526533333226', '118379867252655067881', '100482942881898107570', '113071523885727746630', '109790502905950644940', '104284408884410847470', '106100296973968329853', '100731625547184858145', '108004465885047715848', '100327017863569781027', '115659744579629038548', '110012123643219804319', '112749216212330183140', '106720868581569616900', '111112297042090413630', '100749732173301042685', '102340840500631402703', '104215081746139431649', '107942577037531480346', '106187499891325708508', '103827965229216824517', '101929182681240208537', '110211398916231092488', '103928549898366062378', '101992164641802634774', '107968787521028284191', '112264007058552411891', '109813896768294978296', '104695274297247301278', '107481296447040920093', '105238127119688476290', '100585883873952386588', '105108264733927611295', '103158607395591575795', '114401675088698888684', '115208730916662538008', '110335337318317731419', '111005835284591053538', '112374836634096795698', '117925137437714414927', '114785135385262933560', '106400645016104274045', '111450094854430239274', '109147099159025717832', '107806542101044260245', '105115969166347477396', '111879622535204918090', '111591915134185053959', '105589337544765461860', '102233551815864299969', '102580844448507012861', '115689542814296670753', '101530982560213613608', '104687084595514519121', '108693062865444341500', '105923173045049725307', '114542752454519869265', '111499908439497508351', '103135699585421857716', '103804322151293458635', '107651852624206136551', '116524574874198667599', '111707854651652464890', '117243204831049442073', '103319525177525643519', '111467732620114456012', '112095294413534046974', '110188953830731229567', '114581482843827283581', '106812355611465528242', '116464344073545994074', '113878519978828324792', '105105735953560942171', '111175758477075595523', '108227766059398780608', '100780342728232359365', '111028613407522646219', '110791260170772171960', '111133089087698745842', '114605857888531136461', '109452069106231674514', '114810151217987216853', '116117732247378471739', '107858226132224039781', '117006597120197469949', '109673271821676390496', '110419695326248760964', '100438852388634452785', '106775609116257959283', '114328975933589556247', '106670137291114156270', '115471530419733038656', '108417129586581977230', '115318047968256865872', '102955442386077582110', '113842444453130095060', '102199728324486236705', '106741498044249155577', '113867195959876673388', '113806314825655138485', '103616329388535190775', '115286772943943195941', '112678702228711889851', '103231918545300631559', '107257079669517100235', '106337571384420554794', '101687848900037334590', '114516047414042281846', '107147637802661792542', '103574650721895567617', '107656390233691636487', '102197539546244738811', '100844400017051594747', '109581138805657637516', '108619937771506369352', '108358268345319576874', '106407425466046895546', '111698736271993872736', '110095743887125966881', '107393995800822109062', '102630540900751814602', '101269616518480136760', '110204798566212708806', '106702963465506867582', '115302451851587317396', '115233850442781936853', '112269533742014561750', '114337606913650576428', '106143261451399895140', '106147395384100476605', '108251252326629784031', '107924320635722680429', '117883410510239410910', '112895551135660012999', '115971553634517134434', '111101593428695421603', '113078465298893398869', '110073620719553369165', '109926473783208635050', '117683744929337064105', '108462340855067816040', '103399596563099070903', '112345944035650119220', '107457733113017194674', '116497021361001964326', '112254467169147545881', '102159815165306480832', '111277149185774263092', '107383157816966336384'}
Best Community: {'107348650898055948624', '114875588593485801330', '109345865429707844168', '104142754390088344306', '107035856538795677401', '112915508949553064969', '100324134371388101482', '103934033982985168152', '107558775673569042478', '102171675631622616190', '105637998950921308593', '116561957300650743118', '115460594433844109370', '107917446076231925165', '107625733670511152905', '107505982233194733111', '112306395963035726911', '107014679047964718793', '106837090066373480703', '113944761093719848989', '115739112096228507174', '109787685148095217484', '102981795338524163479', '117762029163958807280', '116849062506250163587', '111002511422475691353', '109414049565374366512', '100438721742151441706', '107385849456996549798', '118408978290364069755', '103304199590617590162', '106189876115589151621', '107150908822789403900', '100786285616685268636', '110806738326469034795', '115589129717097285211', '108078910773248435914', '113572186096020956020', '105459286176511899555', '110292711527889111689', '103972479946816291584', '111395306401981598462', '108031819342546762156', '101169269861152216375', '113691305614063321105', '103791857800149318323', '102772495706435479752', '114822401067576646327', '105421057423009814548', '110624896606737126973', '112903919681703164454', '106393478695568433143', '110255709702147736441', '116665417191671711571', '103375765214005153678', '111349444249397924863', '103159555629815965457', '100545888235193447374', '109130886479781915270', '102854726264949312248', '114077525644661833984', '102898672602346817738', '116151548242653888082', '117287477701152682741', '108161723739773419301', '108091327114614335688', '101975133966831452277', '103533326117556337218', '104364710985043058656', '111723576929373579768', '115702306533209355625', '105138234536720823100', '101683039849030383098', '105296073309971958295', '114839908922424087554', '105339173037154905404', '112267968031995007637', '117229741441856959630', '116941330319027747519', '111749052209901260440', '105340296846759397168', '103438410892269469773', '105966702668067411573', '114551566041977133437', '108254994768513256657', '101342392255923866305', '118125449644667930187', '115517264096412300026', '107509659752051517874', '117575809843355974839', '110262775170662376003', '105924818388092405620', '115200251016762857369', '110392055214657179518', '100941266751440211155', '100348624348633155177', '105638298522327541847', '108704215810307213851', '106215718640234782825', '105266986915657347377', '112366735963271550830', '102043085355425659178', '110260890556821654420', '118097669306422688729', '112392711044464480760', '105145910605015757588', '103864209986771135372', '109641290533350643200', '107636039981782815369', '105222907836628340919', '105324761189549512199', '103558652341658229842', '115427174005651655317', '110983216869631462009', '100251841501532342548', '105259684750769701901', '104631587888354136367', '107149171458182879545', '113420422244530728570', '111898652807602476145', '104315334649820883128', '117528910726956582907', '103746374990012367761', '106225487969011886893', '107583100248616844191', '114236428172025092916', '104844660645787552503', '118177189004466545044', '103614891582957065589', '102780726906835902473', '103933443088213202560', '114944865601039031313', '104234466191512918471', '109780686446922422512', '105198124856956810263', '103739434091749997009', '114610751804622117115', '115478755304306027109', '108551811075711499995', '104873353332707777690', '112669442975277292500', '117029209818135564846', '104629412415657030658', '112863487766621925164', '116046131107486389598', '113186623583029971455', '108814740443144160153', '109736771317629495108', '109155654841170755916', '112131480808552164740', '116936089053490488674', '116234824425478706959', '104459480948960105365', '106922749586772073195', '114277969350093355698', '104645363989462824623', '109401964142949249458', '114608629417719564605', '114200445923821983859', '115940511630531767202', '107267167012376310730', '111058843129764709244', '113990144219651863410', '104059611505603201386', '100930217693057805816', '116899029375914044550', '107660875906928406568', '117958363368979774542', '109111565800804120845', '111071268551800734278', '110556772494804817339', '116602415106481094851', '111989626226970062885', '111402596168371767684', '101906236646150432030', '112686843091136170762', '115181052736294416606', '101701744228082676193', '106600684472256985541', '102151481388972252203', '116581478643467215892', '106003910218342053943', '109876467727174291780', '117310042965407401917', '107736282424750070684', '116354326277822099288', '105416475244874554281', '112239105486092516511', '104214901993894018115', '104106591514117095418', '116973390574320264137', '106281600940449244340', '113769414917964087657', '110525745471713399066', '112561860864020930009', '104847159947172725526', '107291158434082397409', '115913129409035093824', '111920649327427068114', '113843259678479128024', '109361870781096468894', '113746358864153772426', '100861274195482497115', '100651621769656849775', '100545926367884760148', '106412934241164139121', '117136543430366556878', '110924475025984196991', '107023198045555153689', '111763466094891893067', '102151371148581254638', '100140020919344822804', '110241536652225321958', '111706765241628167792', '108065304398648112883', '108460561201888322767', '102143578702997047907', '100442007640025866757', '114707910756425953932', '102420421725069396072', '115754716315495463299', '106265316827872063604', '115760963148996403062', '113255240335204167235', '116618949684227658884', '104836499553026434359', '118055372303098301843', '118301801570268856235', '109686944387245096757', '102596260440518224547', '102328323939973097344', '103333429938529668020', '106869755162183692559', '103426958710574056540', '116971095029701257834', '101861996949895074943', '109410878385939067590', '112455368234913367304', '115477067087672475993', '100881023835399578828', '117267008826838496667', '111013953911349457850', '112884630701584601505', '107728981484346651383', '104739022522671686030', '116941747037230624361', '113262975997169895795', '103380925267010502826', '109596373340495798827', '115031854081992404458', '108963715339351241125', '118407841431001042282', '106123026171763346651', '101890689849493980693', '105900802498797939274', '100599778127538523049', '102271488505503964526', '105474544524715065767', '108038060678219248624', '110647107907810818894', '102357493527903688644', '118444997653815563095', '108182489610762944351', '101885535290923906476', '111267716732125387127', '111062530954653948351', '105102087911975130288', '105280454217398641239', '114492520059525754665', '105905539377582135477', '114954712448394413847', '115085828077786850700', '100186938589206311054', '113242351531747014239', '113702254746515535621', '100139456300784928828', '103242813022162579092', '110823652171439094038', '109797793922220952315', '114722508362900147006', '101278242642293608689', '112209395112018703654', '118358933248752166974', '110587955497525318489', '104589960103679837185', '112353210404102902472', '114977743005699906291', '112730936016634545194', '116501546756493143778', '104667904157447809352', '111246222621577046613', '102078098288357515431', '103521633969068936366', '109372979135514372674', '115900903196483234016', '109209366035024231604', '105046530334806680420', '110639085741768114628', '101495632821336317028', '117850331447734054313', '112408773440208776137', '109053629809587529403', '113155803557968243580', '100276290274386395113', '106629137435682213230', '114621063293418511073', '106922749016154628590', '100591371935775791464', '113218590431249449552', '104857406109954440836', '114550001815904870662', '101326359135790262301', '108412905522976722019', '104087812869056701482', '111351825370763813970', '111548137920489485631', '101101582632461364394', '111219661882020802879', '105163107119743094340', '117033062903926331451', '109351566851431429800', '109995262342451767357', '117161668189080869053', '118219831824758665656', '107040353898400532534', '105090097813727726765', '104328553869453938019', '106390983848819169939', '109351399938437494273', '108642627341139612285', '103536232398741480455', '114468593663912084118', '117709665904747694071', '105201985828750081815', '103229534559239679893', '111474406259561102151', '103399997814775349105', '106374858242966024813', '113514826776987713071', '105725281791704071878', '102618047349606277909', '101319199068187021366', '116640923223897011110', '113979330898220800570', '115690810845062432413', '106416389028388594158', '113255349370589149345', '103139665625941938476', '118277244518426914413', '108487783243149848473', '110675463015196383260', '106176762220398854458', '110213253066194075593', '102910134731476500425', '103251633033550231172', '113159542461783889292', '107360993311566660432', '113457471429583444041', '113444937979267174497', '104401480467294646872', '109238402142260823651', '112797667335313864011', '108404515213153345305', '113674252934234025601', '115773559306672754858', '101977577738512604757', '101857406524176048496', '109018156819230326387', '109734221326849566494', '112942450710523248815', '114834349217074466502', '101707266351443161955', '107590093667978669374', '101640695827845658690', '113067760031784364231', '106018807891386594468', '107707592416977920764', '113420641990229040463', '101009365152868438857', '104286363725914412325', '102314486331710415915', '107982618909749811163', '115257171489816322826', '115916670855275660584', '113732134411703928267', '113074415733820213505', '116954710049425703954', '110193291490704441434', '111051039748078110427', '107940613488592745009', '111315125550019591892', '117309732588915079021', '109870053628419941069', '111551895671908911144', '100188557028585168265', '101904885321690716368', '103778755977163571576', '100565385083793662565', '116638327177794111760', '105477525694881539205', '104706828888809003618', '101873583380104625086', '110038350445855508357', '117939780963036397950', '116806352365658350717', '108041799200835991600', '114127792642644027803', '110609519965227423463', '115209943765910868932', '104525236349138185546', '115694135638787408724', '113899310637703974412', '102097892256472472261', '104923925749706217201', '117665613028757061169', '115121555137256496805', '109794669788083578017', '115146484128708835538', '104672614700283598130', '115703443829113040809', '108588076582379537686', '109345878342776468913', '108786938905619023590', '117096786263280064758', '109280579189041928608', '103676950606201013004', '108514823424774616867', '106214168948760942073', '112181520176506548919', '117609910276044523569', '102321872757613122216', '105476594511976792905', '116848436511235870425', '113383608933571417987', '107556483367244107618', '108413247499481325229', '117919489124812743004', '110476861613340562399', '107998202905172169898', '100463344564987045291', '110751695775382369581', '107169475135045361140', '116601386475273901307', '111091178471303665872', '117059593834355077199', '104504981805192333775', '113679091104569847886', '117681241555382421104', '100618870041355284174', '113493854651753327245', '102411199926431680731', '100679016435898597312', '115829854934725647908', '111016991750865047479', '105912973864602608032', '105624186236016769445', '103546981939364425829', '115002587825504375275', '108719090649071657338', '113488701143505505687', '101860196362440819368', '117180480830995674717', '100010851797975049367', '118080670290451100741', '100212953676424405273', '106131384982394090331', '105489065160959389675', '104119608064940163872', '105574566053602019710', '115081025762845243709', '101506536312500371776', '113507612070915856616', '114082129627545059603', '100245598934601485425', '110255737428907780217', '104226133029319075907', '112716129283867434046', '110292076036271913623', '112943946047332492941', '109716233093030928975', '101765416973555767821', '100813229168405788654', '110356773655474889799', '110972318601650054660', '102668364885894493476', '115314883913773500000', '105412390488287120602', '103957402175604659608', '108001808610932121070', '111731578349856195951', '117697379995591819341', '107561981993115897933', '110172617442009114690', '112057381335029409427', '115595081981112838973', '100590113452692854117', '100028689656197242043', '117025861934715115235', '114182956162660391899', '116525969499682780878', '115650187969419363775', '101074477816061879888', '105496065140915063217', '116054611440772847592', '104028329852681318179', '107709523210339030857', '112333944070832643201', '102563308073481655757', '108605845211782811785', '109043804130056015419', '104705492686956563141', '112722219820639238991', '116617844200815491529', '105225758574529720824', '103583617299274276652', '107638157359386794717', '113946715443571015123', '106166623138751182431', '118118198158062253534', '116390263420179644775', '101182548638506711546', '108187756352013372750', '115516333681138986628', '108042851508742333574', '100948164131944782568', '105598733219634674579', '114122960748905067938', '104487223275138277820', '112761831923510245085', '103636214904400746295', '109893938013298835602', '115995105609774588517', '113186142076553545369', '100969232856312001330', '112727226361732924638', '108442503368488643007', '103496979541671123400', '106400545091550012847', '106833168513115625736', '105119763784866168573', '111519204871077983993', '107345380056943591322', '108429362865809614439', '103030116155431184588', '100585555255542998765', '101989171644896834606', '106915573590795484958', '115698389105552718509', '111802118519275235212', '115360504592641443999', '100850366603336762261', '113703507576439161611', '108686021205441482363', '102736222974258337930', '111590901213239324246', '115358085054420116311', '107771181372242547518', '117720626238470886461', '113412399066026825925', '110321107738977493486', '115848084414264403019', '118359327676609567435', '102538905206519918173', '116945187939707071704', '112525579501956900219', '115633934578783827271', '102676202188744551630', '108806077592664974320', '114973762620930727974', '112971505702976750152', '115143221847216992108', '111183741382500559132', '115772701912882864567', '110556770558668306524', '108759270777800830775', '103791760183164027171', '103684974087620751394', '100202609332472891769', '111168495721795504132', '107665185205744357709', '106220472901841709358', '114100493264301545850', '101179305091815209891', '117042138514996380331', '108807575261328575617', '118297780429110098708', '117462647877833265136', '109628964016241092991', '113160835303260286762', '109342148209917802565', '106872062155728669579', '101302643018559111382', '114228869493885222559', '104861691569271220945', '108319956657263918189', '105570771738153856460', '114151454762980012752', '116194490715887865843', '106382433884876652170', '109255183145564237493', '118120364585932387777', '106202342569754356867', '115329145716512485595', '100584443531788315896', '110783217422025638221', '100340410835745046253', '118430652804288725875', '102792764821426862674', '113996323455493082241', '108051154463572146095', '104211020927646148185', '115288001414266277268', '117488931743785379883', '113714992061418066417', '114762187365096815115', '105213991914461740211', '107771531222021787266', '107644893600371081431', '101423581602122657410', '115229808208707341778', '110527112077326441343', '100233345614313192787', '106168900754103197479', '112609602594560475948', '116639337257732316360', '110558272289309146867', '101133961721621664586', '112871617630543116034', '107223200089245371832', '103022927889268617144', '112671613807103204042', '113155551973466197189', '102218502614021519543', '102697834291184572441', '114318197127028344684', '111770459801993602257', '101535399153790964616', '115744124269092622581', '111563906480887254667', '108998673146368660257', '102492240008005301473', '116426856572060857037', '115626641875816620951', '112776394804213099516', '111183020303927203995', '107491769176599437622', '102750343066382220924', '117622079686568464918', '106726317072433225723', '100279438294886290330', '102425186530108954705', '106880480181714471065', '114687971156212828314', '108250724938217954602', '111050672546250921180', '101201530462820975291', '101946159124570139670', '110628189878519037339', '102918064082723690004', '111326853884189007635', '113210096909000624337', '102002299339025067376', '101757560980174712178', '102562992362330515803', '116636748458958160068', '105904310386401967058', '118328436599489401972', '118114557675104381720', '105562689615046496264', '106169272307805990481', '114676398917189170342', '112375731670409469973', '116294435691850221662', '115596395815211678440', '108999765655839446046', '108541235642523883716', '113531415437983740096', '110469605246351997796', '102010353130079040444', '117293448846407739414', '115743003961327538050', '101492398230536582636', '110653793186123760342', '100029155361912085711', '110788689115113965536', '114420560945258744261', '100996583329592168354', '117399283230241619463', '105733948050774149627', '110192912711569207284', '102855346468155011104', '111679645452844346991', '107252020925742571252', '104388239679752586886', '112352920206354603958', '101405355556857502124', '117962666888533781522', '110688474802292277786', '103658843494801858027', '111762131706767394591', '116033514987434864583', '105846714412577435274', '102007746360547876105', '104111246635874032234', '108916370128981093895', '117679472076744619944', '117831279655356042125', '109117453053859900243', '112092488761167023855', '116052312205661322001', '110549577330541857667', '101660858886010338254', '117777716503182780634', '109749093667939250013', '105144963864645396987', '103441974390889311463', '105400736676917752271', '117614344165629501473', '108872361044769229886', '117245054937343378617', '116764082219010092642', '101203282713478701448', '104408971224491390678', '117067458444759790827', '107366271674197450096', '111217960970393290618', '107207517050486426039', '113687916808174552540', '108986482395975467331', '103218677032751327334', '106407963814165910213', '104973761519912571719', '105611889600461566935', '102221927960443599155', '103784452522248646050', '107342445128902420647', '115315050327674127499', '116001483635760411184', '111947940749970154249', '117500003827318237082', '115981891654314432186', '112047849358415491555', '100008438047495460295', '107830973724615314405', '114489276586542400632', '104283104920976967309', '117089612144881217418', '115632939368970139294', '112698670547276329190', '110771678447849409339', '106787651758213244268', '110097167949323324728', '102700271521603579909', '104219386206797402856', '106640510412906590548', '102371865054310418159', '109873092481408458964', '115609437320837668915', '106213073640688349292', '107126665887970596868', '115404501817951919781', '102014544635403551330', '116925826430940068004', '115800475809612886515', '103545629159196000620', '111771137426879353123', '101431130901814842917', '118060195966019127791', '117837852833748735044', '107508742898313609305', '111694424168117997300', '109196189235775574810', '104220541664395498712', '111270145240185279834', '105365868178570492752', '108557183829263545449', '113284787225540728296', '107396241442191327319', '103440485086493942654', '101446818671335185668', '106162749765516789339', '107640279749845902491', '103181848666629026653', '110021443357362778592', '101495480187227078065', '102117064202008007074', '106036588985851683922', '110379434263550065795', '102589903375023280219', '112356996706873234265', '113854591964374444379', '106653678649405633861', '108463797808577861961', '101447097041316820970', '102615863344410467759', '114585093933667902024', '100953982416378023035', '107847474107489231827', '103211692610941731788', '111836967600994390441', '112176066413200595179', '110068300282260390649', '101270997502474832691', '107122613282688055386', '101046956874219339437', '109824317681535301966', '106914566445906930085', '107762769187467819343', '111042318165379633986', '107691344676291850790', '102604209789264047420', '112130961481629219718', '118131555733179100249', '104794915167914988036', '102001774674190160714', '109392004489339874816', '102519721232445200810', '110899709105002539146', '117126068236790799917', '110385399973090519138', '100622502206917250723', '113799848912045378845', '110002405786613212411', '115654160414327824330', '118042390853009385714', '111212464795893853176', '104573298949038834961', '103345707817934461425', '110151942984167040892', '106660876363786203340', '115789634223051415842', '104083130541705011920', '103085684564325667097', '111803843720416020702', '116433293835224916061', '115403230789072643755', '115482469090044925041', '114443254114158190387', '113389728068653953185', '112005390393978914665', '118433071082963910495', '111045659538457768080', '103958441795544241153', '100716257042748488611', '102291255762074918695', '111491466248379228198', '109258622984321091629', '116775118666102649170', '108658330114663074082', '115942789003376887598', '114187414805582046708', '112391268677800082202', '113413631123566181546', '101411522670835290735', '107014499721205083179', '101882195464541547154', '117843617175570491498', '106777383482946175314', '115471815788264818704', '106003083348115116058', '109440206780255757543', '113976480120863098643', '107101914208205976103', '117459616341752158383', '107281146902978462832', '101432770709896418691', '102170431816592344972', '102315706662673946809', '112551456588932309575', '102365188638805021921', '115687178185726009185', '102207070313603828427', '117603418437094018321', '112995526873937214223', '101571483150813305324', '115900894505130165156', '118369384868249491237', '112879841470105543012', '106002545837976723927', '104476158444060445287', '100974258168375166691', '107966298757344005424', '103037366582313115962', '115970504272079730559', '118161154785371686397', '112690277629839121383', '111003269571421285363', '102190493246946072611', '114424163811716070551', '111283416647206388433', '104801071255171556839', '117185877001714843452', '110421807101712244643', '109406071805900331397', '113393584039379479006', '115311727753235477769', '117847265991358523564', '110103226273956609195', '106866383875255700986', '102922738525778464049', '118177253929143457733', '108077086504877995438', '106987109527834312993', '108112557629934458248', '116410755705124683408', '115541942049354890937', '102504420622327805702', '115724768230571629148', '116812370384559434734', '109712012265873583539', '113938338232106398104', '113881433443048137993', '109325518935169286094', '107720718922832943625', '112382791805996029441', '105033245922189902491', '104424534812760985971', '103709022883073276752', '112589968131171571528', '114247048849834611286', '109075868947205978844', '104531828804862316762', '101033944072876470041', '104199247853030480536', '114867252198960672855', '102170031868537722022', '115020920324331583957', '103984595971776502972', '105275638908165446414', '106632595242559957769', '103027753228442662711', '117283174365630308265', '102781315536557513596', '108952536790629690817', '114633750344034731834', '102586640510355796146', '104218858559301925681', '112856852069290617900', '106835527256079594526', '103949261056887216874', '109335263316654128446', '115615870972868802243', '109569752209143183731', '100031852932201570050', '114593467862729839152', '104523071668121229797', '110042512432413772727', '100581319222004491114', '111077535166060171805', '104045280332537211299', '101486204454724257393', '102221942940843100503', '112508589247432380775', '106310418483081420621', '116420972797550666132', '113834766641843352499', '105530753282729938938', '101397516006687049364', '100487950103199493141', '105315380199016588289', '110258289774916949765', '107192272269700675015', '111048918866742956374', '102727246003134001212', '101152055743297768078', '111445100695266871091', '117516007641841267226', '105216491640488683417', '117344786984788205452', '105567850045961589845', '102774550708079525885', '100623276740673202144', '116143340835822342380', '104012317304640704591', '109116913742369249767', '107066609145001672622', '104627025690110539477', '101618542314456546606', '102146313345435500422', '107421445110022288522', '111191026976666239641', '107935490847186075336', '103697774730216910679', '114246229347349388834', '105841851351684982094', '100679131071077043250', '103375542801396350118', '104833075789540575760', '106737570598016044030', '100953685537452827969', '110809308822849680310', '116261692325842255895', '117871468039926340471', '103765013042311928518', '101560853443212199687', '105851423593223682568', '111000579003598090468', '108487822477374389081', '109010889495678536605', '101109783989792704485', '115785601687445616629', '105242052952566062929', '109574646945769035522', '107323726887023845557', '102216611683321010999', '117917303976733945057', '101961537456676830624', '109130419959982890624', '111271022648828756409', '112994448426929290142', '114924614550649992893', '114136896194133068248', '100200702307013618078', '101275179870005929648', '108292626386548337225', '101709009597213137381', '100855797004917861250', '103839604733587411268', '100601380617286837373', '100295910243260131330', '104099166970678784919', '110807482166400328009', '117186458716523937136', '100102136737035852528', '109773303059260911313', '106591896777907389210', '110169221310171686233', '104639333291066555098', '101241183982769454084', '101245538611244626062', '100534424316001246594', '111983961140937248134', '115816891483368121803', '107096716333816995401', '105051985738280261832', '115577054277154526267', '114241688322712655466', '107855400061191706587', '101252271355699391585', '106532709318061274779', '100698655987920162334', '108623241107635805071', '103462873333877980961', '116935358560979346551', '116979537911597592349', '107714711613847705349', '104192008501436536872', '106687590803153376067', '111228728110367446282', '116725716107094536131', '113402608391165594923', '106874607765859343033', '117287523098373414196', '105211545115895564854', '101170858167877590028', '105422295613267466762', '117538318948936230910', '110221548312889137523', '112172895831966524738', '106492929996498586023', '107587687879128613513', '103105365164405168603', '116591547779390586705', '109960739367065180670', '118024358482942688737', '104857187449120013195', '104704541862577560389', '104279107049574225556', '106357905229054139137', '100361218254418836871', '114810779645279671611', '101573343004737116608', '103604193838758665134', '117668392750579292609', '115583751237339080058', '104939255652455358237', '114769300137901408078', '118138281859433771014', '115918873633072664460', '101822457058478980551', '115632342331199040846', '117940248540164048337', '116965341785175229484', '111503532778437568057', '116254093242028684836', '105345566147236475531', '108579483581758945911', '114618043230336563405', '100487760134156266945', '108702243956983861993', '115080066552092609337', '110265788529286523789', '105001226804902733960', '113417057124767990937', '105813701068511899418', '105421360534824524100', '117977815648164406934', '117808769255840350060', '108855200241623204226', '112070435700031049440', '105295310748303489298', '111294656615727181792', '112423617621024562949', '110651620964477160777', '111089898631428640442', '101940753538647020405', '110712675707709115491', '110741836870151771516', '118400417455591622079', '106672071084690265777', '108295764867109612313', '111318286691007084371', '106133647632447653039', '103857459148999991693', '107290790893215879513', '109568122154354548550', '111401917971052287374', '102621822503935788417', '109757121803595096366', '110914779605699995714', '111814588105295154455', '117596712775912423303', '100342703577899262613', '112754494243408214081', '108270712126515524163', '100052700728830741395', '116316884445587960365', '104840249659865132742', '115780372796647083246', '105981334042058418898', '113288065693155890597', '110089937981912258343', '108555961770005610880', '106502607787729635990', '109987584289589960619', '110106586947414476573', '106282393164894870519', '109407357222310478083', '102536973315470425722', '117886972903697806441', '109434154213098606351', '117800110659124563147', '103398619959781525235', '114834647370494857382', '111060030077135962736', '116579870370062666372', '102604554618567108175', '102093662580926526519', '111759924371065234455', '109951598646894290458', '116014356362508115157', '109697647409576031846', '100526331844938002329', '109411406785201484035', '102536991536106306279', '118247641373061037233', '110221600888730781060', '110965210322765659606', '106258139490268181465', '109206587809241363984', '107831532803228906719', '107932155429974750880', '104077598030476349365', '110378594959350757709', '110163810147675006375', '106772544387169323774', '111427269484642699888', '114043638225438662692', '101453162215777563254', '101155954181843508444', '115849374796259856253', '100613758025489484795', '116438008483670682641', '105228937789154416960', '117671073662238204726', '104346140133621551710', '103583604759580854844', '104495868343034960513', '100345329484639766661', '104345801144381868824', '106519253237690493844', '110650154045349064822', '108600740759841998871', '105451978536505503907', '118050431528022904926', '103150328351925153314', '110729159808906909328', '113041693148251706037', '115356630255487796751', '107266675406427148556', '112084832444408452740', '114910561715997013667', '102713421480026606531', '100186710838827407666', '102890159748280606098', '115307003069691533470', '115553603558952198883', '110188450209045376443', '100207476365394910924', '103363342114971078869', '117888860379667170672', '115807723984369772514', '111883881632877146615', '101604758566835021293', '106195831571853627393', '101130656339668533532', '108071585757096529724', '111448092297495464248', '103038287804535196503', '111636644604817058900', '117041443305174009289', '112011605270017123101', '108152252385291870699', '108575961322871913333', '100512649718649402368', '115145812983523155770', '116405848330488816788', '105480734764563996458', '102149364210050358793', '105876343419910725543', '100650151500810180534', '102224985411798848978', '118063637485562004479', '114301518918636810892', '116438603972340062055', '107156755577155979497', '113383623452399451554', '104441415299714065572', '116076186919541013139', '109601281034422123196', '113381483153888636532', '107625854097808986033', '101379876584560582171', '116267384604818495277', '114618659070244006894', '100585772325525711838', '104448948219087403805', '117749865363674826272', '110357198582053736779', '105489064367742025310', '104987355197229091786', '103677797198301167861', '111257212321180028563', '116470953347091968861', '117360103600409535739', '117159589190836164630', '106854769490241988382', '116452935508617689824', '112145951608161981842', '107538503004482952974', '107265412936882114192', '112526208786662512291', '117721846193885821185', '110738178351405818606', '104582250927352419136', '110279358252896773102', '106759471889350611686', '101502056223282249599', '101174714442258565659', '113119946144896349087', '103472952324873369088', '114326903094745477264', '117437841282077965369', '111586248332282735415', '104515053455533706984', '118163822095608736409', '117556235540402405674', '114813729942739673295', '103355828447574595701', '113133925816371893584', '106419752011171815265', '113859970559545588569', '110549739567411012555', '114352415294077760776', '105995917556687149007', '104862998516491558437', '116142452604357423186', '115134622188556189501', '100274807456209555586', '107742059751171695340', '107747666102379771298', '108842492591796792953', '101423092138897438495', '116817338726035926918', '108549385320967837769', '104826898588030785682', '112693485303690368068', '101059133757139216178', '108312944398165015025', '108523337373444601877', '101462942800226460671', '100303384683356105458', '113006420670449946421', '117903011098040166012', '116672282660593772448', '103226166584311556924', '109498619850260739772', '116937581022538783895', '113515065173321288367', '109602109099036550366', '115059883502484074676', '117134203809928335453', '111132594517063956644', '115074742580527848126', '115891230387484725858', '101387092275812938679', '100080124053175377628', '115588769028583140496', '112750162166257666575', '115150834179663036977', '118239708588385194858', '101544238620721926724', '101304879558095647917', '113607881597695397209', '116805285176805120365', '107889816939032412666', '107484261818025698576', '116466722243843357848', '116913173549547958455', '115598521511211400892', '113096993341203159664', '117461136321424092290', '103576052018604536045', '107121825569855176793', '115135005437142391944', '109867857011852916441', '112110858722565266390', '112999253285147253060', '116550909178789460578', '117456894611758161175', '116533362792581605947', '108424020240415471405', '114601143134471609087', '111790682521035049601', '109519872564472121189', '115825356079649831108', '109384784623056332691', '107068579181420387366', '108630215885594244541', '102312438958695854492', '113698453258677928252', '112247611440196124954', '114503806689722509896', '101698568710409127237', '109775332677855506641', '116315897040732668413', '100701164261086809790', '104140914211678254355', '101536109537442359228', '107121061735858585864', '103618862132298404107', '108932788008800738020', '111577433381708222371', '113564907805644842158', '100415345527134852246', '111877999318967969519', '104137679633229137043', '113519537265944504829', '108845452184637335176', '106048688481221945110', '115963955697106043086', '116085587120828893542', '104338889675518594604', '113233350295755316797', '112526176943879675329', '106734796011714755852', '116116167312065511129', '112184170276510992767', '106587101791064367906', '102909861033691159475', '105002082042672500302', '101465854435804471513', '103068825327398983563', '107375322906605680039', '108346637271615594833', '104373203278186232612', '116929145821864917460', '104511933936275853523', '100860729679253738753', '104253774537638039236', '100454410388149159869', '113079376038667232212', '104554933457110625498', '114853458007065354930', '102633142172382046999', '105405454751548857147', '104553134624556200907', '116113014152499702246', '110581693083408452344', '102677360507146038290', '108904607472189043979', '110031535020051778989', '116862971710981267949', '117893862702691605455', '109177683659525760187', '109756091596998868747', '100887841569748798697', '105112620193039173363', '117580925821727692155', '107380709199522756628', '108227564341535363126', '109896764299719102648', '108502544742527327179'}

Louvain Communities of EgoNet 110809308822849680310
Community 1: {'105498814020747664644', '111507697789646891138', '106252582339816604483', '101236358663985370139', '109634076350606312015', '112965071697530830208', '104364245385222242812', '116418120999128229651', '118131417301350660933', '108064815750032267545', '113135998239694342561', '100248473165090001153', '116389048565881346695', '115258341860984101749', '116588163905721394130', '110856928078733558635', '111336527206042452530', '112585802806501604122', '105742351296672285212', '109723579416761476832', '109213355974494564760'}
Community 2: {'113854964410181850754', '118141411480865400366', '106899853533350256658', '105224804026588644838', '106176762220398854458', '115421256232333720307', '104533077532962855796', '115918873633072664460', '104678585479974299308', '108421068311256655678', '111175640058806309479', '107863054441128406657', '107195212023404839277', '102107147806939041278', '115037313319624350537', '112215258372617797481', '113962023658534166448', '103399926392582289066', '104015870160096329227', '105997147696968098541', '106990629754929211946', '109774732813459981611', '114707910756425953932', '106324060302594483828', '109117453053859900243'}
Community 3: {'103181848666629026653', '115366624923467413091', '107124055901177783454', '114468593663912084118', '101816574028065445771', '118124464126251185263', '112931539494181042672', '115655034901162574758', '118301801570268856235', '113332154614115794662', '111939354147936352250', '109322383637704271125', '107682748671253717847', '105352819651784295285', '113967406616028106904', '116743480428293422071', '111361201906254029328', '117459292092782853494', '111048918866742956374'}
Community 4: {'111553074779935237348', '101976992040117841588', '105651997169496320109', '115690810845062432413', '108561665932627473443', '101739741878826137430', '113079005958024523963', '100705229313310074838', '115014982086075314957', '117433601273794793765', '104401480467294646872', '100880605610983797081', '118068221752550925627', '101067703531172208103', '101661556901272001511', '114799576153483269253', '104837444186798390618', '109937667038516307933', '100648447824835833841', '106352324589265984342', '114999153204626637344', '111325600943668975013', '101992317764598340622', '100505025801065910059', '107034853331269236365', '107938607469938255640', '115222177988544624929', '103150632928084465744', '115037426314836772892', '102330181289486588031', '116351844072307896383', '101128755113749145093', '106961732045330916384', '111270145240185279834', '110809308822849680310', '114964146443403609010', '101342900053183501060', '116417560883731706834'}
Community 5: {'111896527502255370279', '108176814619778619437', '103347964729925152455', '103326131892225095567', '102368348168475189243', '103894906673695132548', '113241195923771055099', '114509450889691472883', '110569410802485729381', '101077203305259314122', '107048171099175859014'}
Best Community: {'111553074779935237348', '101976992040117841588', '105651997169496320109', '115690810845062432413', '108561665932627473443', '101739741878826137430', '113079005958024523963', '100705229313310074838', '115014982086075314957', '117433601273794793765', '104401480467294646872', '100880605610983797081', '118068221752550925627', '101067703531172208103', '101661556901272001511', '114799576153483269253', '104837444186798390618', '109937667038516307933', '100648447824835833841', '106352324589265984342', '114999153204626637344', '111325600943668975013', '101992317764598340622', '100505025801065910059', '107034853331269236365', '107938607469938255640', '115222177988544624929', '103150632928084465744', '115037426314836772892', '102330181289486588031', '116351844072307896383', '101128755113749145093', '106961732045330916384', '111270145240185279834', '110809308822849680310', '114964146443403609010', '101342900053183501060', '116417560883731706834'}

Louvain Communities of EgoNet 107489144252174167638
Community 1: {'107562302583176005973', '117604474758066227896', '116438477730966655432', '112565888022185219747', '100605864222557374608', '104112700502285331526', '116608690343216001321', '111164095920889813531', '100471039405682805612', '101421435361785804366', '104558996796696834366', '116422773158129145495', '101119568117646041384', '115431853773627038741', '116742396272396002804', '103806016066388243587', '106563076987268237912', '113683173113414215373', '103201238410770468762', '103650951579527262798', '115424061231268192015', '102245160667846222465', '107958711860940415885', '108379995159495341811', '116706588382945742404', '105049612401300011029', '106635473175875925613', '101224766255596945219', '116953382764220034830', '106541664466958079149', '112413860260589530492', '116445437433162945363', '107550335129662216109', '115961021629090154025', '106792630639449031994', '115516171542271021123', '101145980349117737014', '114553764127573871154', '117860386411463323543', '118207880179234484610', '117728611187295597769', '101309215377089839393', '107953843890635271354', '103059428109795353199', '115230288324573016906', '105466699904008897296', '112326507397759634500', '102549181577943816715', '105426743019195604827', '103200491340117663153', '101377314432124184416', '106725444343496024495', '112427949641078375948', '111143094580674346698', '117473087558401216519', '106517092226488584705', '112632260187323187916', '115739659213925109676', '116801584068966298462', '106096361729029699575', '118026639398463272784', '106073502505833617615', '117075503202449801357', '112836206483827885255', '108209879935982921111', '107028157462218372820', '111583991024851468345', '116665417191671711571', '116368508025645108774', '110686463635396874206', '101285025178738693068', '105701312004900147888', '100886528220085497544', '102854726264949312248', '109667890964357276732', '111343994565974357062', '108909492433674629621', '118169756271670551157', '113264420552412762530', '108805430409141907975', '113380314916269290368', '117523780312701271966', '108091327114614335688', '114205894819109202624', '116226932711437764309', '116799045993451756042', '108555502588425470447', '106378908153930162657', '103973455051678273599', '111118969072054016819', '104428967104402641181', '106121614599490701044', '102100122839131553339', '105076678694475690385', '102725109790365996602', '109095289428532932206', '109907140932335503645', '106154669044284257296', '115595232870915667505', '114937925666302803969', '109876915588291208505', '112036918858998154353', '115666220350944366974', '103002460761284588099', '108572627333958532747', '108382816543147706528', '114892667463719782631', '113686253941057080055', '113301090943872996184', '113413941952445486546', '117071968223305894541', '110889775111765717798', '102476152658204495450', '103649669798083626536', '108542426628002931624', '102239645172983099492', '101595117115653228833', '103911607910068922429', '114814005044450108245', '100525151970482090340', '101469831156864434339', '105898851287256125141', '113381419568450917747', '100852553003843098980', '103903167257655564644', '117559951633238789877', '103326923984364791144', '116438093255495233247', '104789218149315172931', '102409541521880756024', '101374291154422119765', '110030220986081791922', '101426379407929104607', '106649978359921982022', '113249114393065213870', '100272572056305744950', '118228519258164366941', '114789052294324286806', '115639700532046080427', '107308430964327858950', '115470071077898720170', '117841284165024027243', '105941540459124123898', '103952447020373678046', '117710159389064279424', '115530776534617554663', '104129842883884467271', '102029505169101002492', '118161716557563091906', '104679077361015353573', '117554722970555088332', '103850326109556474629', '111499016778755078481', '104102743248207705784', '113420422244530728570', '113625462103500841369', '116334827514261561554', '116532796765106918781', '113391326838583895709', '118062829465210047881', '106133480923323663427', '103274064524957433652', '110592401308316669248', '111962077049890418486', '116944634206258122974', '113464569897311842405', '112270466495573981484', '114236604403554541461', '109660946159817383241', '104291276465722490992', '109653469454508385103', '116034683958714362546', '108618310739230261301', '112362375146907129258', '113159698991677084993', '102339821424185261163', '118288659759896393235', '113455290791279442483', '104203344134379117895', '100695006806342072112', '116395157933882773759', '110486517623939606418', '100580057424662460288', '111195838733454098219', '101049683439937737520', '109462153724122490319', '103809813786331654814', '113651533166317708938', '102674763947640278957', '109549484898750371360', '112669442975277292500', '112256312261504958334', '104366261681630138523', '105945403054619746508', '102107147806939041278', '108872036879266293791', '103226907226789753873', '108959577300504968814', '103859887112488539528', '108482500385131341255', '113186623583029971455', '109580245554247104400', '102717360415568313383', '104535574150437710403', '117511955612172117914', '114824202606079760230', '106369182367169177791', '104380036950579300637', '101348333430536237939', '106983800549406471589', '103290228265979018515', '107362628080904735459', '103009042022920905686', '118236147995429375090', '102498471625988139163', '100930217693057805816', '115653522232867695783', '113327376737622693535', '108324852458814017913', '116303122205999176427', '115514397255079403751', '110364855552755751336', '114801797004966639281', '109940597696193991152', '110570190335649752012', '113520924867868062949', '111136943830266615679', '106259722076762380389', '104838252503679069603', '112715448698841190179', '112471890387110967375', '103139040842124238411', '112468427674837540026', '110563351377427897709', '111861770000711596685', '111247581300801050227', '105261334045363619746', '111407034040498495654', '109870612811155891618', '117677434193419083498', '101863305673693947212', '113122231216156783325', '101008239198078836230', '113901826228935709546', '117438479357332725817', '109801463386403408735', '103786508331190020147', '102862864443228156134', '100446424597147316863', '104129971305612636060', '116973390574320264137', '111169963967137030210', '104486088524980775787', '111683391686274840331', '106422711035746240826', '111391100670640083214', '117690673854187012438', '100142397094908216555', '100646334382638139241', '112600205125796554588', '104608290092581364312', '109372974572557264826', '117599181480696978620', '104403899914867381453', '116040565882702717981', '106737452392271403669', '107140884077582692033', '106499409180130178424', '116167786354423516823', '104320324824027999822', '113733130744129278876', '105459830584243636071', '114363764618011623200', '108770653757133854006', '103733061201281593592', '111523509846064499365', '113900173900657215428', '104755428128999425702', '111874748593255024020', '113403112154194398439', '115535723976198353696', '111349868439224262161', '112237365171998001876', '113651259256908505190', '104178463434997368468', '114592751246503219483', '111718830236077991058', '103561847705963058569', '106598143202921800975', '102407737550127021230', '101023109998310006660', '114379643382284182599', '103856102573349408385', '107174603951133855584', '107165093852558360345', '115304232819929344853', '114955415628566000965', '102382609215666183921', '115264738078507482810', '103492094648269950319', '111819236720804784066', '111309155420847096877', '109821232243783448938', '105840250344632516141', '105690023467426957386', '111223823261826440040', '118301801570268856235', '118215864369977057082', '103333429938529668020', '116539099250744373280', '107899204703103704505', '102294154344875880082', '115621321148305565411', '107784212140893392732', '109944522594844042343', '111578115386716207492', '106209012168361375271', '103366463624361111353', '116078656230914670772', '101793532287583914396', '107903247163748995532', '108094760132961329912', '114489504825638353488', '100124389520659251191', '111153455306955308157', '100873628951632372330', '111832530347449196055', '108705174211639807508', '100070927167992422053', '103780053534929069969', '104984388845115004014', '105284909171916066479', '111704031312891066566', '101207314779512610092', '107918069294314435082', '112378905380377418247', '112029092202017756465', '112174656193323553225', '109596373340495798827', '114896892290324391860', '112201990577777311726', '109412400081371783885', '108189587050871927619', '108499030067116895469', '115215962751742872940', '108108877694888605239', '114614337701581469922', '104954173124102012464', '101163289899816448462', '101114516910832196188', '101265639158288878193', '109196927921693462980', '109019814365324450241', '113522117055852710039', '101510589209151784871', '117091380454742934025', '102873670437594949433', '109654603268749269720', '114530282685788609076', '106846340899002453404', '102373191596205712937', '103896020270046143315', '107483714191607682955', '103537153144510961548', '101417191791743464820', '116253172870310497278', '111392229243756687840', '117360973231133071733', '106501988136092543170', '102384669117825357195', '105775193099174598419', '106258635265923541801', '104605946488794124557', '103652441454188509895', '115143234371607892983', '108834544234077411259', '106632092319272001080', '105347022110383656850', '112982358046210156183', '103881798865831852378', '115971103286397223281', '102288248509253946606', '106189723444098348646', '112368281729388401223', '100901649987363776394', '105362842231294447428', '114097075988954205934', '109447323719942836871', '107870240225843632731', '113438256900303213931', '110168117080267015976', '111801042405027358379', '109552601721259087926', '115389971856894286101', '107195212023404839277', '108274608654834118893', '107300439022352685764', '105908255425370868240', '117662256585714941806', '105390077271236874234', '101035196437264488455', '115058384974405026221', '102793763408532898886', '117757565120070816446', '110548244043172681974', '107410390066929416191', '112218872649456413744', '108159551615224338529', '107119125214160307479', '110481389662095773950', '102544236480728869522', '107850361196882003271', '112944155404327241166', '112658633592720298303', '110641519954744530479', '115274420552571826637', '117165768875331736284', '102689221066933845512', '107724746143977942596', '107357017062573105721', '112029775019798501663', '109162365685489301148', '118073857442509254484', '116570889542655364711', '115470184314725218073', '105367783278355685938', '117854512835078688040', '101690113942147319984', '106567570642614609073', '116268124700162834377', '114476892281222708332', '101059049290567215584', '114710341198250074504', '107675155083026839050', '112174039767189541081', '103679793185531964246', '117689417145181059475', '101494708632928300874', '104517282954427853888', '115532919106609808552', '115860661261461064995', '103189315516134780632', '116492394921952587453', '104316443417435189825', '101289274726988466712', '115192055428436328176', '101848191156408080085', '105856621798485106306', '102833622706620944824', '108353600388754742225', '104582625183526964371', '106656417611434168939', '102579620702948196837', '116116935437953807178', '105534748317482585008', '101367748735024057344', '114057121210807129507', '114369704013100203178', '105336425684208963598', '105943946099362806788', '101205741801397157062', '107438998639340158528', '118170768987466114474', '103685740157136493702', '116659288805601011536', '107747838010116449754', '113743331714043885852', '103697821787469756035', '115571998474046088312', '102455282480784055751', '109280758276914754699', '111943154038712688786', '101033463733496411434', '111363149159932889918', '115582623750221438794', '104187365031365479470', '113111731715139693250', '104775518336261105863', '108803781399684733391', '118281061832654729973', '103809839833065657064', '117851035855826465807', '105440794443460562007', '115647026292417015088', '103373050673209589428', '100985192783512595524', '109394349516935036489', '110402644293562055951', '116197193480724162859', '100547273289276772580', '105694930790909515613', '114070067704581747667', '107429617152575897589', '115968081131502531917', '108654833827434771284', '113890545538451545819', '100542372891417952741', '117741205368187248830', '115507263758222797767', '109109427803573497734', '116469556577026921142', '110593153719045225548', '110334143643816920823', '112715813043210307846', '101036778970291988901', '106243037947112322316', '105318217552727882571', '113757927151929258451', '100962871525684315897', '115919766952475225499', '102582297540745104705', '100490965950112173709', '108176814619778619437', '102332158572057805055', '109368654259427988906', '111183544898345861350', '115594937578328908961', '110053263559112570543', '113861527938285739869', '111585420523722254035', '113174179084613493287', '110981030061712822816', '107026299993226528916', '112311470127292513285', '101160407305581586697', '103586615087663445665', '105256156026694816333', '100210163638314228996', '100931778402879229044', '113027837615023628132', '106833332484614513275', '117247033413568229004', '111860166373307523958', '111844772453088947202', '118109358782405572589', '107105890509803563656', '104637837952299687214', '101651096660571767183', '112276313212733068188', '106180723686031712005', '112395376905252640579', '116995710336756123292', '115876313538796651168', '118336139840053353940', '113607294302005885185', '104041730971411982745', '110593319771693604646', '102864451869463538759', '101245272034528389049', '104121609875372820045', '109923941665874520762', '105706178492556563330', '102446618580791135861', '100940716892313727285', '117876399076277118155', '113899310637703974412', '113097851206100618060', '104250970445890717876', '117741745713138927677', '109794669788083578017', '117665613028757061169', '101188200134011189910', '107587796780479464218', '110286141446904173472', '109777274122671124391', '113456203738507213575', '105846917401692687194', '113619286206637523955', '115360471097759949621', '108177835910929170429', '115644305848422451101', '114153859732710523651', '107044550151209703496', '117200102155645191486', '111719717600282565141', '109735868860370294405', '107564207338213653485', '101248054507015265353', '104508507682767510004', '110103641077948436261', '107243787766415047451', '111890945016831896743', '118161364821865275134', '114700223793249061165', '106838416855753163320', '111174147791215115011', '102961867603624296837', '106724435919605472652', '113770461910835900905', '108221835031756703002', '102520902016562329226', '111084290495530231719', '115097392317466243719', '107328949221172543768', '113077201801227398296', '106474488581258029186', '102379940116661442481', '112791456928724330032', '107267083823737229376', '109441649985435981308', '102368034923277047383', '103895402092394980881', '117041449029631631280', '109847418192789226682', '107268299412858724158', '103774436474733093169', '106909780620672931572', '110001339139979553061', '107386249394822179765', '118299777136505117634', '113190229460560085138', '102871123574468799566', '109176413883126930497', '111600326518812216057', '111838135888506280048', '101501633479949673529', '106144537664449988421', '108240851375674070640', '104330156508504717257', '107566737427662380385', '109887665686445998048', '114293347771106721680', '115121985249152159383', '117694109416186891571', '105904670752977334739', '114340540754082207930', '115891696950731235305', '112288065781051354839', '117681034834791918293', '114782440157903842958', '107297378329620440295', '115380528988460434025', '109179785755319022525', '106733655215821410757', '117742154898364015613', '110853799830000374161', '109914328497683240050', '109599220524260072765', '116552941560660658912', '100581198744805120322', '104606614753457778918', '117538315488626912884', '101038793101119748720', '108257497659531463336', '105237212888595777019', '110292076036271913623', '104912287640644359992', '110911002186901540358', '113425078900424454385', '106391588184376755598', '102923147893327767382', '108529222612621232413', '111258349379390009398', '118055814112266323118', '108190746792806228802', '100685931103533370900', '102730864829244307880', '102013213906897023257', '107381319285916994429', '106172172667615086208', '114393690647602824731', '104527616393300959037', '109522193578764168033', '106495003548014926909', '100165282014213649318', '105044049419763533097', '112071803708722404959', '103275414019940070295', '109895887909967698705', '113353182963589668812', '114125900939049731990', '104577583673080872058', '106501936839371135482', '102261683746739173682', '107374647660338467147', '116143938603101885158', '102285954355508747800', '102311875004581334954', '115946655083833154276', '114927294217645926989', '104175289386948474434', '114471141472917711860', '111077510014267944701', '105547060999578080024', '112106208511864515140', '107459220492917008623', '117840649766034848455', '111382451300271293204', '116000959328274308893', '104124592566867927546', '101442356602691809908', '102100900281506406178', '110429856422449500918', '109646508394301470481', '110839739422317734712', '108691296071670325922', '105508660898837488930', '111952079789718547532', '110794112577806705404', '116961301915403381264', '109718346641639271496', '100947550708809260049', '102195144388135237932', '105482021437464314848', '113278937129481000981', '103080784632791833659', '109187026428012507334', '101307099794854494980', '102397482698742388526', '105234964082781728681', '115744399689614835150', '117555990096315491864', '109596219054914376350', '116473937722517787824', '107297476269882277750', '101935995649723391317', '111288574156818690676', '114767803040499829479', '106455052219635361001', '106533248943352121512', '113622055115476200259', '104579882652454125191', '111396408762595559038', '115630385480687542273', '115063620946046993952', '105748801323975462511', '106173671408615232285', '115304645050453722342', '108757188942626929897', '112961270204495595553', '110260043240685719403', '103770797604047232012', '108468423908956051843', '108981679893410895534', '109698184916481633887', '101401863073301251310', '107051820498210074676', '107618022046111276493', '113859540036726448291', '116781884096709693338', '112546953300159727405', '100535338638690515335', '117957562216890557360', '102257603818432033304', '114797565315612213098', '114215018864711870311', '110479591560176287829', '115412016015461821316', '116696943168863559388', '115755165932700408992', '102873175118305865375', '112761340428079841885', '115659255952431552297', '116344399331270961004', '116551430990291119287', '106711803105103787711', '107771181372242547518', '113664876767408759987', '100185707560478368490', '109579042529957997981', '114056084994793924628', '108173674822948928932', '105296264385437402402', '105406713523222664494', '108584673169889423818', '117884476143887009277', '116560377643176212063', '117034484462904239257', '107540638333054762391', '109507653225799908921', '104414006889440330710', '113883974401703134794', '111232989044907544213', '109414049457867785818', '115633632300685704236', '103170712877279687994', '103929057358376044772', '116994290980472045711', '105262362497121611013', '109813896768294978296', '106720493790729270024', '107018066359183517628', '105873814765821560444', '103814653718186136893', '103097764320602190090', '110484413619969864191', '118176635144720693012', '111650011709967768816', '108045606825777666935', '101811340813117737931', '101399120398451286442', '113256146527711720896', '104236036126667853354', '104201507644960011701', '114762500042594162450', '111923578555541250439', '107543460658107759808', '102076033841555832518', '108319282403260526672', '117722053817989966161', '110912654601207786417', '111262146038004038186', '107353422030527162376', '114908847203028092210', '112564135762572403710', '106032143128915938009', '112233299343248188738', '116056482297838775754', '109213355974494564760', '108032623298499022371', '112483309917631634011', '117639700323467566828', '100439677742408559680', '112104018110702208083', '112212727619803298792', '107115180877715551365', '115504455695105344602', '108767948560114365015', '109339805471557551388', '110171339580648239267', '105288133747476371880', '111567061469336027617', '100212507336562726920', '100740773272993108424', '103469879394772884362', '118272164624383931729', '106454856985227008272', '116004511545399403473', '118164441818555589158', '118146622799388835070', '106402850684051126748', '100771715351072186974', '110611852267844360261', '101700857116643556085', '106813061125294796726', '114701241123617315548', '103535806271845766896', '104624794554556530604', '112750091316252656625', '111367628080250080638', '100816418778306854164', '112837439401580368562', '100619317375047403958', '105159288524502668767', '117530250543183103093', '106458554244835260890', '105963804556453504833', '103349689605579281660', '105146060706924233930', '101853012869358195753', '104987932455782713675', '112871211396445499018', '110845149859025684138', '111976179410500096190', '100219691404074384850', '104590730428339310227', '116600660010359542514', '105271681761642615335', '108865830525446695541', '102406042148418309977', '101950208653618672521', '103115473754659376168', '103731782266535133959', '112980020981315525001', '114229157887417365950', '112247850990845108522', '100490516677311512990', '107166369539777818001', '109530008586248241764', '109812154559522809355', '110169982207423433608', '105258087279998677287', '110559306075472911747', '106356302054336184712', '110329781365538654444', '107431710886783872305', '111873853137122484021', '103970527989649695577', '109268388872941447574', '112798804139044187606', '107191542129310486499', '108907552935332685211', '106752261083710991939', '102766904556056700930', '117894830662946357424', '108062915397530291442', '114045800510530461940', '100472608497932134515', '106407425466046895546', '105034949362507677166', '111324012410917919847', '102897134365777759426', '107602882044753150398', '105589087510104431580', '101828183984777718546', '104914829730501706316', '111562638514922412630', '106528103954793102526', '115005061882443895792', '101062235821996561929', '104872324815116706180', '102600774742322762226', '111699855306814304937', '109926473783208635050', '113920526057233976680', '107849922105700858631', '112798516308771746920', '116051047274205780982', '114765095157367281222', '114294757055502483384', '107427356075369790341', '109074857816744029470', '101709955837879025679', '118222512929985638168', '115502584942774284971', '111492199188028722222', '111803451496284973356', '102352120060183298905', '111862324534985995584', '102471833540021278727', '116169862173728406534', '109549749746353031555', '117808925288865527025', '110600546748211156466', '105571367382401829756', '111297688846219234682', '106111195718302652758', '107970019180630435486', '114051322401103919567', '118435660774054677482', '108551108122376805989', '112131052301095546592', '107650451991930674897', '111204231597899286927', '111880539351297758103', '102991700177087923792', '103814318968872067095', '109742804342446573548', '104770776614693816879', '100621204114976031079', '113158814439512755352', '109773123295959512976', '105720374917117266351', '109773864099107008704', '110275700940996733061', '104392842026507204042', '111071516924332005124', '113982016947771544863', '109970338579215706051', '108202274299391625681', '112829764821993700345', '113804415261320525147', '112599748506977857728', '109734652639820618180', '101396087935203987162', '105246828264278441318', '110086262320007068364', '112226444837742109695', '113882113745075873153', '108497822730801871556', '110970478049227720359', '107423800169282621610', '105026434862126918856', '115438915076156178487', '110511685769077130162', '107786777834250014923', '103486150650858067282', '113211954743892121925', '106658263435760868950', '115212051037621986145', '115586898390417250687', '104637611526356357120', '100989405473280437703', '117692603688082448409', '111355521189998129753', '117143431026798289437', '110318982509514011806', '117719821968389525268', '114480451015846480694', '114634469290344215480', '109087219541067593342', '104266135600915178310', '112938065332180786366', '107772744220163920272', '110534982800542813261', '107800601648398385670', '104935478024576728989', '113687916808174552540', '101508531050560383557', '118227548810368513262', '102079900396893024840', '113143203855389025652', '102520569241965041156', '111976189447364118963', '108483700324316970657', '115192378231934758824', '105540241924141497089', '117078683766767369032', '101791177624236997185', '110622346521307288527', '108527329601014444443', '102219475968800204884', '106752439105747082487', '111557988109638065224', '111452466818840374931', '116540317535797197534', '102377882249382281108', '112314395542822752573', '113018487908388903194', '113409086302056667844', '115583343987670698513', '102156224561092001320', '108873304153780597752', '105663154402166276187', '112466252788633155794', '108881682496457039309', '102301614513829772817', '105072305864951447999', '106747990444555145217', '103846222472267112072', '110972643255774764231', '104392551078829652132', '106075926887576280408', '100733334063966339322', '115449277740727840529', '107902791674095682080', '103674677798255572952', '103847352689828733042', '104390150369482509270', '109357173702102949587', '115128808368924712465', '104384618198413714249', '117624867943351457090', '101082092468629957675', '108802691645484177516', '117362177282595168386', '107066031592122540810', '108492526126263806887', '108105670269190420138', '115105647022907007398', '111127765976287525565', '107826898160241010115', '101012074427509537656', '106047339735194827738', '100961288997176421259', '108809238871290369247', '110153147950721133821', '103046205364039460215', '106289562822644692555', '111696416275860222120', '111530414219710845688', '110310188663069469717', '100854202666064752024', '117443217206442118345', '104753156470151028358', '104774757304611870620', '117300339930600767280', '114132152877855597810', '105313187162422560130', '106157521915631300533', '106467956464026331029', '102761503773645968900', '104205304666071891811', '100746567420084440882', '100969632254286108824', '110876769838873316958', '111065108889012087599', '107370613759841832903', '108359434857750473549', '109106843297496158611', '102779421660447432075', '117345174540134167439', '101261243957067319422', '110351801655685107906', '108721466183079531495', '109460286987969520237', '115053975672650597157', '113343289732618728322', '109524702084450613375', '107004843925454095805', '110217867677589593536', '117013460261867390469', '102814914876684133938', '115909960452934625712', '105119518970961257638', '113440880897931183734', '106952702971234308514', '109892778117736265351', '112960723772418803264', '112726038360301567381', '101962829696981365403', '116279517579102446739', '118060542644788469413', '108439032486286528947', '112647753930092928844', '100771671272095499353', '109959354295627734270', '112837412700139095342', '103374497188264364599', '115834709756311067894', '114819575639630478819', '100879115281181648565', '118234987237484711962', '105386242248635638997', '107713758011103425235', '102715042925211875133', '104485759965014141563', '104376123433741873548', '106912596786226524817', '114218286823031873800', '116755662228900061089', '108776869004587763299', '102528718122061029071', '101096322838605097368', '102885931406196510193', '112540993775194208638', '107648744590757302255', '105552751194150069971', '108901599657368504920', '100179059265527529771', '107170797938865105803', '117200274133492421259', '108184823388212202257', '104975154049785009296', '112731084750684256015', '113102862520765968586', '109323071486321851462', '111076127406109584342', '116166660014087779586', '115407184179295920691', '117386232350873428301', '117997508248143467215', '112737356589974073749', '108093775538079548425', '103399149369474669101', '106160120121859644663', '104619747503393735851', '118191909035818071614', '113751283404152316115', '116059998563577101552', '112558842849268568366', '116119893029262153595', '108093196978439295882', '109556244641607065276', '105467410031842833476', '112872927563871212990', '113184091727451211493', '106201101304655420135', '104845196021283889824', '102280187460284438983', '109022523720071680484', '114046998698228319586', '100715328241636136414', '118275754648266054105', '100811733418406054662', '110917923227885600407', '105106962406858998302', '100291485699176411017', '115740425396974668440', '104119324947337436102', '108866766699357318662', '103147347309732225253', '108470782772821648496', '113027287369712034675', '114823329938030546555', '111026850364884949433', '106170102981460245504', '101435445820764233826', '103667678270324179713', '102768114339985212844', '117513232055994920961', '103892513613850678007', '113141491911286106535', '114313615710604492651', '113528409112748871843', '101360588077358765523', '104019628676287434335', '101670592154326222488', '103497375962504727564', '104405539079062799451', '114424163811716070551', '106909119051058200287', '107395795129791787754', '105857189858227582814', '112108146349792378878', '117919852642990147224', '102283706963707611751', '113730287097639021097', '116331515612347682749', '114782716597062478815', '109308524770948540943', '114512262688030479795', '103243278114930872332', '107757660648006087128', '117889449076077304562', '114632854492678778509', '116625409175127405276', '107387730934206332729', '106869328657379778203', '112288037970592739511', '113339552992922631802', '117057760261772024576', '114536133164105123829', '104885672108365535825', '102817283354809142195', '100081688755411201393', '102674258087271827658', '101155443773705571285', '104527974589315823035', '103826376633698210026', '115059793966709655633', '112652419137339945915', '105584766690422580666', '108542028742775408207', '112133321375398608722', '117440800608070428322', '100936611936552412031', '110924681541917174512', '111292852688797062644', '111831478459732211063', '100013503239814724841', '115184265772147964766', '102227359845636175866', '105173978068939050475', '117367546931116283373', '100258330325630692559', '109557537388130641091', '107742567767125793693', '103977761514480488970', '102734773672764406407', '107762505509366198035', '109134542761003763484', '116678377243407600427', '109031486518632696635', '116184062049364511550', '103855721758679327070', '110258598415939907971', '114585365564249361309', '107112192270189573201', '110492963926129353210', '108316366145145424476', '106287665062204946341', '116485529671477438936', '100838318974719130475', '107234596907841739108', '100744739062759166603', '115638011957803848019', '101765089097091765365', '111118627288812226106', '110054750107833929512', '117764656317189329352', '103541694080221120019', '105163907830710862802', '113418554594512897845', '109879692651335695102', '102958145054444947691', '116594199576805510790', '100160535056943446339', '110945896776944314708', '113049680760030015485', '103352082835290498060', '100270750934700745963', '102652798699165063453', '102946542014341156581', '104046305091198506778', '106570162071079714733', '116341747502466446052', '113967216489593095540', '101587918377167385153', '109552164022869062712', '108052248933159783390', '103831709792973069282', '117439726142720584478', '113116318008017777871', '105462643044575195307', '103519655975029093996', '107259876553284197105', '103761326311610249621', '111296156124188875659', '104768621699284314998', '106528242942323266098', '110036682383342142442', '108441236350188572460', '115505611402423023943', '103618543375127073102', '115217128127776043681', '102865263115020893218', '110874643485851794601', '116475141635496647275', '103079526275359000556', '112847428408357711502', '109137415564496180560', '118274547296450170219', '112708194574821912619', '114155637696278017296', '108663831491715199681', '106955057806718560042', '105216491640488683417', '111028035383789880812', '117944255792788034101', '111085837404839082673', '114963335823650717178', '116075808135192798838', '104162197579357666121', '113735310430199015092', '109964835523558331931', '111299245834134954469', '100623276740673202144', '108494946397743992507', '107308460013033893888', '110574646879337303115', '113172936350486247623', '112236344213897425331', '100095245926948995335', '102757348190282389547', '117415299178197399511', '108267505811149941920', '115655205216183932495', '102349305007676725479', '112651712578445880355', '110378953230340021029', '112567117703230042072', '112553374822968576883', '101603746022982792137', '118351515323229708433', '105231704254423883185', '108260365402701122850', '111674748486766258557', '101371617406438805612', '103996269149735494674', '105779560824580764120', '111538009015644508967', '104703109675446407948', '108985069770923500411', '104265422458271861932', '103871883270165000246', '114674910956234036253', '101517640605056528235', '108965164133793342297', '109444531289011109804', '118319396904174942748', '105944275755789769334', '115560798821543443948', '106329623209697686110', '109330684746468207713', '113190138529310509230', '111937447827665620879', '109592634059397506775', '106664732340731583406', '101006738498641076759', '118407019604194144874', '103573861712533193449', '102970080723469591890', '105875140491203787369', '108151744331661850034', '107171241573314616937', '107347120062830095924', '101059416020608978287', '113209788861124695757', '116351092074076481313', '106453174920448111637', '114972221948028006870', '116011252490222413570', '103762604622232918121', '116204437472476177397', '107606703558161507946', '111232346000552816062', '107331626870497071558', '101248132798651706167', '104016949609489688294', '109619063322910077914', '105734935003600818916', '106142599927679917738', '116214152295449083654', '113899511232506817885', '116565270544040241255', '102837097678487480685', '118060719740697519041', '100377493270775536948', '105988730002336504786', '115314902915025797112', '113317784690313904082', '104015870160096329227', '115397975174915356748', '112710501221399450850', '109638677974287539994', '108629717769018996477', '108212930079570466500', '101554358085977409453', '116369071500456395369', '107703405132139524311', '116975065059892451854', '108906879763321014176', '109293770542704261224', '100720381549183482357', '107814003053721091970', '111091089527727420853', '116119420122834839490', '100741886359727995612', '101111725148957537937', '112126177775760866820', '110116147199435061080', '111720952354186227548', '107951823638685687042', '105064375035313533162', '105950725902891401635', '104261567553968048744', '102266721632816665047', '107733269574737813168', '106559535755568285284', '108945615972564140630', '116123554028678966465', '104522833443181754677', '103047027122693182933', '112307283830146683885', '116880405123751600396', '105788536249289182288', '114437821607569957251', '115838073957413876487', '116247667398036716276', '116043947632177598920', '116616473522216111363', '107732802446301744236', '101963597801596120711', '118391323892426354857', '116910304844117268718', '106470118056595969550', '112162067187975810298', '104312266146854596690', '105786329165387175660', '118381409182314783050', '102186402010640689794', '115956363612512643809', '102560802882566983335', '115220228182866909424', '116398684787400584523', '116790754553761013184', '100771778865891544223', '108397492225891313226', '103300363750121441954', '107953073710704668222', '109843577202599564445', '104500985015816287598', '112957708071337353347', '104483335833597426084', '115481103967401468109', '100932195479763784248', '101610654641108280060', '114729740472671073461', '112661262066626464523', '105228323457033543279', '107711637734662046744', '103520907987098229443', '100255414512209205250', '102648429021828386272', '113795961594472514455', '103422959879607680904', '110095126245882149972', '115445642427433788455', '108421221875206061761', '105209854925481789028', '115998365782148743728', '114127684466692817416', '111735436574449420319', '106959964891946926594', '116927112288249522316', '109810528911761009420', '118088897327749634204', '101718460568069080946', '104239170611216583381', '102933438871860647050', '105267656376269695918', '111431163781108422921', '109412257237874861202', '113664406921737357882', '112435942355572461782', '116924376950649155795', '118418436905562612953', '114338270254521043906', '113609359086719569624', '112466699453244400190', '101671254344748572682', '109382830028354840675', '107792665646397377888', '111754036279251010992', '107776381757881810293', '104004113006827265832', '111485501208531423117', '114314662902167329716', '100899721373067396143', '105551989431666449555', '106957616962047221060', '102616149286682191474', '104206303867855369291', '106359487807208915036', '107314535279818632177', '112999005004480372636', '108202989932786461870', '115794443293916888837', '108382975244372026384', '106661386135469061222', '105946704536127863017', '115080215652229659698', '100492888463256600334', '111577466514119212961', '107743243961862129539', '101631268762395039180', '106684105564729483790', '110159306642698690348', '106756633331481645467', '113333970555421072314', '101613323632895104222', '111396627909813082628', '110041523199056192526', '117105764275907696041', '116256894601669480810', '104505181812520851969', '103400759605078401719', '108351379315576829114', '102438587857692203407', '103752789033829922442', '114092052797730247075', '103216887847401478447', '111304467646929665855', '101798506124778677222', '110756271032918969687', '102511868205585278752', '111637781336462698926', '111988561807913777237', '107432398539341365940', '116511752882326311047', '107117483540235115863', '108234504729950216883', '117888539284010547361', '111792749577709496730', '111655402802831199860', '116392910200064095754', '116047064092724050557', '107063521484195491203', '118010492606736098164', '110388230780588093032', '103984263629438381785', '117518723197409899160', '112617127041903537004', '115895054477394715961', '112063946124358686266', '115665385992644522818', '107837787570701999521', '107968525907303243288', '114967530494856854235', '112416945907493718478', '115459243651688775505', '100487969343352743165', '109776541085987843977', '114547779905550869913', '113107253403679023320', '105852782594022510198', '100001460601553769984', '118216056303749770000', '112841382149223378417', '107013418740229269209', '114354878556558710088', '102143577107646910352', '104992798176478601465', '113146596813770102711', '117211188266299551948', '116947923643606285942', '104639356062913210803', '116419531887099225758', '105597865359019730782', '107494834634231938072', '115978949584209885559', '112459587220771232952', '105471657677885211463', '117609074387781485841', '108408701426332023039', '116157414053356185540', '114085493413055031309', '117531833583575296620', '109198785850094013672', '111291284658065889519', '106089366725380818197', '100313918372780761690', '112821156866464968100', '107505945626886118152', '113327741559079110283', '100817766199767691735', '115631392683812246403', '115431621547492397389', '108264998570838621572', '111736038656414351152', '115567596796651842332', '105354335974535112059', '107894914670080014116', '100699206386042036776', '103334982537818934471', '116947906726568301788', '108159920487426481642', '110584481927562150689', '102928259944836419922', '110297516354913792182', '108396995968821132401', '111204757488124368395', '104655632682885234674', '106739909617776073337', '104678191247579814431', '106020745084647886919', '111700516584018069412', '111098246349175435754', '107248051867606623205', '109986380845162801956', '106717946845088683921', '102920063140431683002', '112145951608161981842', '111062345847981251872', '107119940474246316259', '117697399358826098478', '100284485939530393059', '116219534929662479848', '109821835832137035332', '109535142033825344089', '117429320390907645600', '115851550445020159565', '118058794383720702307', '114744510189908480227', '103011662826175289775', '117350989957881101918', '109077344077059145936', '100002480836167822627', '109970694243142634643', '110647574859662552061', '117994793060697905112', '114288572990229558524', '113669639330555286996', '101802628560870737830', '101732201128912742632', '108924136210249299218', '117261351415381068330', '100209496338129656740', '114326903094745477264', '112234710508263821183', '115182601594934760469', '117211092043045415977', '115204805503581947511', '109067944403004677551', '118163822095608736409', '108470801637099721956', '110353325283488676308', '107294388876501183693', '115611370841296478883', '117247110032950657206', '102489475272134988888', '107404242080797040590', '106746796711269457249', '112621763329756975729', '101382638684901775055', '107542632252660344559', '115236630117797905416', '109746540495919889829', '114048628995185346979', '111302966137190750480', '103503784030163121732', '108182285273662041292', '108810107917992542483', '104671636596627928628', '105255740380850267791', '102322382186844241583', '103561651335947774764', '118151364150619799530', '117408889341288914294', '115557429069266247936', '113884569404079501384', '100892612779426154375', '105182282046745007103', '103657280492137983446', '103216449684460779645', '117162241494948098425', '102787803649662700214', '108726627059993192865', '111761749676250705531', '114555959398443655098', '102908183831825198819', '113987783198222246178', '107970222123399164711', '109220060006128553211', '116420016730730378893', '103878892760050193072', '102233770004174020180', '115150834179663036977', '100150262516656318671', '100918751310613131472', '111438593416284668742', '109243044876542467841', '104376626976827590822', '106512394490409548810', '110999643891411006365', '100717260460197803862', '113607881597695397209', '116064700533628088794', '109533441517984298838', '117896552660822449164', '109328612626879131592', '110732894040996100327', '110831814681416186004', '112930364932290387951', '113626519008671921974', '101722794413056181717', '118048139271163842678', '114423804406467895352', '106637859152656219769', '111499908439497508351', '103418470943478648270', '113587097779969233449', '102858072197145459524', '115836923922245203582', '105892869389940058316', '110394599356932147330', '103563594037587142083', '107610802552780953781', '104382044723182769187', '105737646394343924193', '108983901461478631548', '100688415300015056554', '103875258484706784219', '117427965408516165606', '114154062944146796931', '103735385308870498896', '102484815895297039652', '104807117922089582088', '117331260710731985743', '107950851093654625603', '101006001190131292549', '107054441882391722914', '117205931133892412767', '117164379876522742757', '111366663698896145964', '115115161887111700191', '108904364100929057342', '115490198572387699066', '107710313261685310182', '116643304160474160340', '102520007126942234329', '116522482082039015216', '104891536829161719797', '108750679568139936282', '101943035898572565380', '105197884542851644254', '107538227221346415563', '115011646412956679108', '101246387263333071454', '104182876112695525975', '116563097005119909867', '106775609116257959283', '105329929314379043455', '117580334862683341512', '101327891608545060692', '107590607834908463472', '103173778577042156494', '114394128653474707020', '106474465852302015559', '117058794763073546749', '114752230106780929894', '113876914367537091066', '114662554714189782783', '106609458137279105208', '107092957866511854890', '100586461319763000734', '113501423705211783319', '107733223155249215242', '104484219049883711215', '116529815860867544557', '100564997856777850833', '115614791007645952267', '113417663123715283363', '115925885941625757982', '108586778317771300452', '101494695494209004052', '101546147081486036828', '104541959256591361052', '107612965650983920664', '116651741222993143554', '115032003955557981273', '103183570053193175186', '107011265359512082824', '117942605302461709656', '106539507407822116200', '118424601051534304110', '113265173921862692587', '116064889536351872000', '101949100051085600234', '107122385373308170048', '110670388561465947882', '104548627795526843775', '117670223716788465006', '113423232520350256875', '104670590988236364470', '117173444820116260805', '117259934788907243749', '118185308410727568187', '108506119827765810454', '105354532715798223299', '100994114474811451452', '106821603602178334924', '116974033728914311325', '114853458007065354930', '107561275736053026558', '100774699436094132400', '103245952838925212735', '107672129527493747015', '105362990780240393762', '109854304647212696025', '114801877818306839095', '102554407414282880001', '105100415886680776080', '114231305708772868829', '112996720934757372518', '115708904388040585813', '107682748671253717847', '117640248138077345065', '118043264140450175721', '104546878095894843869', '114786794106113206036', '107289961585411779306', '113450963153809629492'}
Community 2: {'113435321295173258137', '114939665364497270864', '113465771817995839889', '100038413049692507612', '105976690877361609078', '105170424168673410729', '116132443343700819596', '103624642111778121822', '108495305841656884891', '107259514119710390411', '110720365196094415019', '104252615936789959990', '113698025855960152138', '106758072666110923253', '102301925235690691403', '111099835542235293080', '117678119479216657560', '104000907293996725339', '108850165775587855194', '105166831072768056480', '101351658400168878317', '117169057718446434537', '111726296546035481597', '112052207145399138088', '102387547306528445637', '105461501855014279344', '114495083102338684640', '104720956259989572405', '118165672496719783143', '100275369366064591159', '104962347070667053810', '116511985008199520245', '116742159132367854462', '111296305480267035844', '113924555766753659514', '112883377816231599736', '113118140338643969384', '101384112455887732241', '103011191893676285908', '112027822385054753854', '118220857055764418224', '114858496219143473247', '106683452755606331265', '117162584547330191129', '107829011166693569753', '103092365274156083113', '115614309790907281267', '107627148429849708122', '113621986695574236489', '108510743547785674771', '112919733843233887503', '111729912087650238345', '104178942937236178216', '102518365620075109973', '116037474958183519388', '103241530056391928179', '108189481625587435470', '117854769497679103742', '115482045733512958639', '103875028402395166562', '108705293437552657507', '101895466486422136103', '103827495996138556572', '100151775940328282717', '113312804462990112705', '118437692255524789161', '109131753620535843656', '112000489467966551603', '114124121045669648448', '105164621447300845967', '110844082215587114348', '102682030297862873837', '111328333853756836839', '117608643645928114645', '101533437896673022113', '111115134959742432948', '113980226333526647401', '117726982845027243554', '105268843000337490338', '117614346606810010817', '106220310992437411759', '114009419989045179593', '103923700544970826249', '110572048251087260267', '108953716425027205602', '118382057892892439930', '108271537867006892813', '114746723400328550050', '107105348072959327741', '113116798150496717628', '105611889600461566935', '108393668264332230101', '104796164878325999711', '116672392011502086691', '111413155182039517335', '117727808769287520310', '117080460060821588163', '113626890337315012561', '104315345033596295376', '113388920749703417250', '101763511463762540696', '113537711651274258466', '104559367186056690815', '101694854656278622842', '107894161011293747074', '105778096264726449062', '103885278007648446386', '103550332525357033558', '116938786028977707651', '106236749553364631789', '101371795890095513598', '116339430670263519533', '110631584319300141261', '101965231542285455416', '114480218635053098793', '104100725654421261442', '106880894893281296113', '101901232143740160078', '106841243684214310052', '103034068456953220780', '104163166390789007528', '107107212870984075288', '102822450046900135921', '114894373995529057283', '101182332285028616119', '107831683085141733877', '105966702668067411573', '108718406131451552836', '105281194557166307713', '106120248883783560821', '109893546815395232496', '101854596522140504619', '109678705779894816696', '112141899047591994009', '111876382360515518236', '117370815467894844941', '108901237855028365685', '117330206560237476823', '100275456048197983226', '105366470677983879898', '105607476388378833699', '105476381299539058508', '102400354088060921866', '107738680501149387853', '110008116244179984313', '114786301827117129615', '112613302119908855458', '115767750641721526674', '107021386578061403393', '108389036436404903393', '105294765328544716331', '100937080232841223416', '100905305466402789900', '117819671466113107345', '106264880718777779181', '109121043800922287530', '108721350839132799148', '113292954860882739824', '107554195884954006007', '105344239387382002272', '118025179339914082390', '101712029112814381414', '100101179192564355788', '115868797658348406026', '112422316829264871774', '104208295582277013988', '100475561456657224558', '101098088297119001101', '110553894819307316598', '115202253827844332223', '113079112416450593023', '110619075233522674404', '102312592016270847717', '109182373957614595289', '115533706038046529764', '109585183273678372705', '108723453893621328565', '103913078739565411962', '104501652823299914159', '117760686859612307836', '107732476244664646127', '107708625917544129773', '101318868666358425138', '108512272211144065383', '108762410549881925690', '109920005795290614750', '104160762916176830586', '114124699453749164804', '117534567438781655786', '114912358797395522487', '108583921701807283353', '117820918963737586068', '112317819390625199896', '107233810604455525453', '101995834967238906264', '103197489440932684008', '101366950931902200363', '100467247127009384190', '103041844428738777927', '117988961081154574738', '107775404050846237250', '115580227117161529977', '109445694594960760956', '105979898282548414098', '103903816329937152481', '107518219306064103599', '111095796078701910038', '103618573102998872644', '115194079649434781497', '103092754229817039243', '104244566720530687874', '108820817735945349178', '101061915862182396523', '101358589654375245794', '111408626247857759665', '111189683040828587921', '108423078998856224523', '106259240239807883388', '106353782123563383689', '110817157772325839710', '107625658878407076244', '115121190871606390348', '117937415022745482256', '108153298436385586584', '110005870117760401605', '111895201268622692277', '103640868363269754000', '104646724943720968968', '108834662751980444685', '115890818529847454494', '117434041186347435092', '100171160323617338451', '112759446650710384950', '109071400637618144048', '106959913859307683128', '114247253917905334162', '113191653034493517827', '115788195763743347192', '117843617175570491498', '117802718819084454042', '113119045494513107248', '106877518422447491864', '103473863573453096651', '106031648912799473605', '114647617876281088506', '100285043256825201691', '109467497023541289374', '116591251970863826123', '102113840462283524594', '114378370305892132188', '101183827526654972487', '107564271879998719632', '112430082154939454696', '107624666455707219893', '104866519156997639676', '111182091459614831945', '106275293995490271192', '116707419903535483593', '113515525332538914887', '117054900536843539900', '114370942767405686826', '105222378662128673453', '112613093816315021818', '117261791955605101387', '101868406348246164998', '113429025346581067124', '111898964366303457295', '108159334908179441499', '107289256564215101715', '107030790742542476772', '102990913065298871235', '107285981046059629192', '104441355304167311880', '109769095489366015369', '111941283700401557389', '116867737555028725618', '106539835304510344813', '109821038180443243017', '103915941357790241524', '101428086335852185675', '105845861210914905032', '108138142849003408899', '108702989229815878747', '103518993170392566205', '106985823475201692468', '104045511944341391917', '107795385644732129927', '110990415571597478613', '104605289181301085634', '102817743109060986105', '117833313101010099100', '110656253137238747090', '103956748000006342626', '106688394858776034168', '107475835798405892541', '107857888121727893520', '115600160900461862944', '116869567224212612056', '112003053183268312906', '114977829426881889492', '117174193243418253301', '103892613881515436882', '112203071310772913140', '102126834369255384012', '115980481138756364839', '105605717188343552918', '114613149483902662976', '109034285321961491041', '101484020753179036782', '112447253390876285565', '108341936628098008146', '116360368746388640697', '117126661563615740049', '102581249148462303452', '116246462646179586664', '103124845922100199071', '107108629296744262885', '101954261955134304484', '116756988806467865919', '107872094080762025686', '111493894867434654804', '114094532331989935617', '114573581204356068132', '118131697232761732776', '103811590250073107599', '105426307125970041077', '106600413552895970272', '110017717432936421547', '103407186088737594712', '108190053773444556273', '104981153774802985493', '103088059440519703624', '110484209568201203720', '107229002668764524807', '102648307144991255080', '103100179087770804839', '105185455174342753611', '111798739622320607079', '117272767006069745879', '111193018930339642844', '115501845285984933590', '108264814164025953371', '102672374688772458990', '101789619439327096679', '107639567933788693074', '110761471444991434555', '117313330246471730372', '105618471069714101780', '104200199897846441934', '114495838180910599616', '101418715115916934669', '103029241195292101736', '107813030534261413185', '105715110737693124434', '110156725901074535078', '113400351102255476238', '108638787557017359490', '115839558470311466603', '101326473558851266458', '112401605196934673030', '103449225731496343372', '108504324492284095679', '101329200678818469388', '103506800973002590969', '116071444474611697606', '117275613789775990716', '111835024921462866899', '105717185779989792488', '110410118826299617418', '108306093963172812513', '116010540688946703131', '111673151624151424655', '108516651469213983964', '111806628113547092341', '116772733228022884924', '114636364962513361355', '108581600383744157473', '115989300527227925068', '115644063183821773031', '111805628925604418976', '112180555080313027108', '106911568960262229461', '109782743775362085383', '109487119238850452921', '113077617428722440432', '103700409466770985134', '113019858173294682900', '112711666152155120126', '108180384220028728628', '115608879003077146506', '115684337246252869975', '103671549953294048977', '103488155513297681758', '115376482203245770820', '101390248508816320351', '116758306162971624205', '102387975506634955885', '105139328980167946549', '115182013383278977990', '115969744109902451870', '110083467573773561712', '103997551385961498986', '118229828410918651716', '101427708723598286502', '105380459908389887494', '104690520406213149052', '105967999647321343176', '100261608777541555164', '105720575077842057695', '105889407727672680200', '100425739170055690781', '105658927968337553625', '114427850946999804706', '115644140961688148645', '110624703529341220926', '101094105348372997640', '105321861074597835055', '106526737947007406923', '102407045868809610187', '109744504046679889646', '108628443227381208695', '113497790689187078920', '100898726845422891469', '112794531066162034186', '107788622468752184235', '101932080441690768772', '110347264868029713677', '118340132086483099005', '101832053372535369591', '104747304896344991364', '111905796037369659608', '102274702309754511052', '109393173981141513124', '105883087616320654801', '102254921263609226645', '110453493066024590173', '111469503092879234346', '103531984146359617543', '112803481233104137827', '117829180598920486765', '112953346362155947755', '114263492889228784076', '114187741965209450599', '114110327402201135668', '109307561029264799199', '101941876824901549285', '116152970063442634520', '107732141541561312641', '107985102860141845294', '110823806974833091953', '112753673795733261069', '104686250503697558061', '100749618637007073130', '116610527104514904972', '113006600504104125846', '106057838175094751817', '106294738773145690221', '104166683851434520973', '109849246912334307762', '112848104018271631459', '117334292632787816394', '108759901321068677229', '117817052122566051327', '108112196307843395109', '117564707493860349154', '102418802702780156356', '109603030238276154667', '101661202742163830758', '117783113906561198831', '104109881446393419681', '108423612036108096581', '101153468639331529713', '104458938478962853927', '115745959615353693288', '105802333142719763193', '108350410094406810129', '106255964642738189563', '116441747355761359686', '112552319079120490722', '115550472568182135597', '100007521425301894860', '107629818779411782380', '109828102480855113119', '116763783293685184390', '114047924794029031071', '116954345171943483467', '115076389471719869628', '108230036250566463833', '111514735588177976561', '115065563322811017070', '106002660869398484684', '106463618470062510615', '116854778808147979524', '109131258283990514784', '110868701913486935395', '103206786526099082032', '105551943554693186434', '102656980175402722450', '100987418482959610835', '104899905923329200280', '113198853216960063932', '117807705400441218332', '109288329743073954368', '117466482459791110658', '103020764841360698006', '113826445430709315059', '114960827958857959956', '103941594805999055770', '109439119291083568153', '101858339163531830807', '113490041785449486666', '117608437740321391253', '106970181861072535116', '110769543941381183446', '111104698384815513184', '107798867186542046341', '109833374118865667426', '117747685802209970029', '116071275946594200077', '109612252450200616502', '117110900083702382475', '110649158119577617962', '114820480752300993890', '111709710017308986916', '102831811591974807581', '103979199134097921147', '110466688127241330787', '102656139852674706106', '113144483364526125189', '113583756750042981104', '103202760473534065366', '101302496747753402518', '101312790121083376263', '108464201162904901153', '106461633594064301959', '109610301374714110433', '115690704193312436919', '105221054787252205052', '108017344568068160077', '114153794734652455699', '115642181881303469271', '111192490533881933800', '106323108312617324337', '104938275395746102196', '110202148260796990473', '101296310485646996413', '109085511401108649724', '113314321788257666239', '118142894411483692111', '110928268120568699826', '108894449265020302496', '111001135384522062611', '107218642105499514720', '108612311203869502383', '112879206971647854118', '117365778297694239453', '109223276000402664879', '100580203868390239075', '110391341631790400088', '108403542149288133281', '111664662971926970305', '100254884322650181981', '105186369823013844219', '111267975895881595717', '113257832247273491708', '114614871042282238013', '105521618305469712111', '116114203998112257616', '105248406398392178262', '112362796935792328753', '110478276670436712310', '117009886930068964404', '114038564293324338054', '105576370635355122980', '117200305078049520282', '100030967570283228843', '112630132689918237462', '106187092471543637416', '114989358912013434555', '118241706409766112402', '108041410289205537365', '117042430101993837427', '110918518132080106257', '111112219933154879358', '114263724985133518308', '115329901579467138335', '102854311912714900388', '116002634428473399293', '102936041566944563648', '102102223169944561281', '103341235804505564047', '101115270922615903536', '106831762557971378854', '105410478758658916285', '103330025858600351508', '117120945580884863389', '110747746419769300628', '113658376554820335123', '113646569200086337592', '114046180612010159994', '115290116152215885852', '115175345058960993404', '103429023798900894292', '112422638382072847469', '112532174734543629200', '101354172798464998376', '104446025420243236460', '111975224012018194892', '106176824286911921122', '110549212260290552330', '115970197492058000536', '118311813387223268166', '109053246903385956600', '107998653347447314576', '113526438481352689007', '101965483652726244273', '111043608444505764735', '112232569486618913138', '109617361775428351353', '106728655873756157998', '103650703836816496431', '118196458726065349010', '104975666058522435058', '108584805279585306962', '110782237476873083485', '111132283845303158546', '106287024820950801335', '107150938667723041976', '110769679431021378605', '114023651802230839310', '101257875865357286973', '115622097589128800580', '103129304982450190056', '111841063346290955131', '100580349003099136931', '115728458120419023779', '113341186273613241257', '107994826740238756356', '112171239641231279964', '101365753232772822730', '110000414893249299326', '100838609505485154019', '107040109683948542812', '106908582141791358504', '117799431355480938471', '114163271215660166878', '118270038016169755776', '110226026994630736269', '118210774411660218412', '107978729551226072066', '105432999357543467752', '101240786246366714589', '113609633619983805215', '108398780673305961018', '113179595967722334569', '115531985781539115408', '100968313568314999910', '112446615063456339522', '107441034568602103519', '100921991956085003160', '112455951153108629391', '102861625523178741140', '105382175513266538815', '109307234334116744502', '111594953337092443126', '101609582118994470760', '113528573275660898837', '106927703290536139147', '105670280103726644454', '117251401224388113104', '117368856631102667225', '112349945212268771829', '111973012122832065397', '101730229523164941202', '112278008753579196511', '102530368133542641112', '118271935460728368339', '114951153220032017716', '117290362621948492349', '114452583189695653393', '104124893186498610791', '108379843904787190650', '106639396424392100255', '116992946265029396755', '104268432506616866039', '100698726704077575379', '111494748483067320360', '115322949759672206250', '106089456616545738856', '112005484203762930233', '108020107658978270494', '101118135372426186940', '102132729483159543573', '110120718576199613670', '116029015128594914556', '116929261309705541289', '117662787427358000188', '112096013664504057553', '102655243537270905389', '100751529912611655620', '115635783790203857600', '104874536448361982086', '113457607458742399428', '109915901462911322532', '117558369671149465138', '111852119488463725230', '117013270038354652709', '117699027477831014469', '111160382577441379317', '108655621696213706147', '112066692196122613048', '103798719109930376233', '102434702507641641366', '117327973844438638644', '108807418879988314264', '114758137980765322938', '115077119375311083223', '103613260673488067634', '101005349854546472800', '102752115506899431228', '107773073025291449903', '111814371900160540716', '115235883247234516270', '109215554402832663069', '109462948655854300805', '115831773236070302803', '115776904698341375063', '115811608074199996286', '107710128509407135607', '116792306951755880708', '103299671903151403949', '105968121033284619244', '113729921117630231650', '111825615589371080000', '115770994163143043771', '117928467831014463280', '108518251875235403810', '116329861123872939292', '100268281156139418010', '111997515499788405250', '113543880726286626830', '102531379874906502640', '103484147666932538438', '113460276440712687269', '107161747644004279548', '114382462036907682217', '110086840099586073089', '116541157048459326046', '103449995781766635357', '117270655453846612117', '109091562885824578661', '114790124739400437749', '104380581224549491750', '105800931235510181650', '110949655967512985542', '106739504288468559058', '101204536922115515188', '101409535916074283224', '116479460939746367071', '112171428470692967372', '103627721981378204369', '112045048999529949908', '118089892017613224774', '107525778405784831972', '108276017039691136956', '111614848322085425617', '115712956701502499789', '107004669592473005667', '105781983137881296919', '114715648897856324518', '118115477841953945747', '117945473480868380086', '112485884885190667391', '103548729736290415705', '101544196292485071205', '106382393460970517823', '118306516911843051370', '104319701938100393265', '111896772932644910364', '109359845078084061894', '112957065719498086306', '101620878551088415723', '116159875263764238696', '118382375186826967662', '108778680297941875527', '102185545819076112150', '102591456980355535921', '101990168708836845802', '105161232143858721168', '100760289293457167724', '109280501968233688748', '112457110405729171019', '107656441989772047043', '115380981948224185206', '117491275366025525159', '100942119548468520608', '100422943113833522366', '115056535103043667046', '102505619105617077856', '108061108874226292892', '106255898978966943774', '113780280836251353450', '111991872691699013484', '106525937470885901204', '100275127957118045048', '107264445244175053131', '118021675828732821545', '105933969669785529812', '103900458321897198471', '115412695087401046082', '112873672264704590883', '106449593681218312564', '115994776758481717942', '108566334850399183206', '104014798881761369057', '108116823663192680258', '114124942936679476879', '103680537270349005908', '114353505338096627010', '109086061077201076736', '109552100939415543002', '105214118705787614089', '115757455111041414883', '103587592038026574557', '110426489614941682595', '104378154756194093727', '117310595726857993328', '117484467173026353649', '105620723198704093179', '101702924642198239798', '106947722115685291879', '102775946291711153243', '114515792289018687040', '107588258798644401651', '111313622504620609014', '102183994329015251092', '101512816846466120723', '101158450341154702070', '111005570197962924384', '100199206837153934262', '101259445219481496562', '106178912990039163828', '100267728989877310755', '102255720890649514668', '117055729266754416915', '115489093988888524022', '114059548727530382883', '117803256060499880442', '116556796334476935943', '106805428332666511558', '116106563153306625698', '115258352755211202246', '117406735588417478091', '100736513308111936429', '104217219417377920392', '105731881257142821581', '115284976741836774394', '112005751432451380700', '107867604773686247488', '109814936378070144274', '108347134468694009774', '115186878312054850629', '106753581955676569553', '110701303409251940504', '105049758370408227684', '101290983561588894975', '112444894894322397484', '109522180282993900056', '109514475488698891798', '112353516771203355380', '102634664641135784006', '101054176287548874640', '104282453580753584553', '114449136363515778220', '101929039478960520672', '109172813571934524948', '116586080361289306321', '108845250854229233264', '110265877811424631909', '106743481357860745207', '103867073425136749187', '118074592578736482053', '111554937428262475546', '108312009015007806451', '101016714052815974478', '101295111559019219927', '107860260797668257089', '117112622255729837768', '103684046305197255647', '113042334587840968084', '116758452082711085927', '110835409741510386245', '111139435529123830843', '104528273104845541220', '112312901875750706723', '112298538154248260258', '104337849268076537184', '118359406034859277252', '107045042288175957167', '102243605956196306765', '100815151242113073589', '112731845824666521812', '104031145895548702140', '112910491493894368148', '102243722954623989102', '101414913556920152653', '103585977613029983766', '105900187404228390961', '117331799135844161364', '102191075747262958777', '106035570729285450613', '102018526152427414248', '110282411828135622364', '114942600285702701682', '111110621007165740226', '112567254452276123160', '114391345252268389899', '109774951215877430341', '106719979779567208605', '108533866066605072516', '105040001333571511595', '104657888072535219107', '115391090911429381573', '114120406081944481640', '114335257693284472091', '103252287944370268046', '108006437472813923338', '101543866482745788167', '116631329713205553508', '104944128365441598365', '109063145498612963101', '106727109817019132903', '112645924914212721803', '114764567692252908296', '102212184795237656022', '111241263379733454446', '115899046837002212608', '103254975978184665893', '106220690285817555391', '116929574636168979614', '105374605403316311458', '102445489004362587184', '105937576002485757390', '109787340448372368173', '116837025859476229246', '104470581700601992271', '104195221079928918210', '110170478425532185128', '100213096168522242944', '111731243339944564597', '104265751273656254845', '104671353913129637903', '107504119555803931411', '112472104236914933035', '106065832799617372150', '110297213175588875104', '108037955970101699528', '116981000875007763662', '112017578329727592537', '102370747100847006365', '111021002113667196653', '107526321116822867905', '116867368573175665922', '103191968686417458200', '100084794854549110624', '114117473914279205609', '101605149969759215109', '110036641774981642141', '114720121583900479665', '106992323093389636048', '110056598450285146300', '111132028848704024416', '114052870720720466661', '117729694813992697722', '101889975950768622316', '116780922551677170912', '101387174909834628816', '109123727761757726835', '112682502973212166227', '105173077105458646448', '102629283495814186588', '110145365386943856630', '100013234150524277230', '100465861691586558681', '112897518848045385172', '101035537131610855906', '107900861759751633571', '115240951101043773040', '105986014243314002677', '116291397068502613104', '105959055586673429437', '112344029462699553500', '111507674340124274619', '105974667002613140845', '113607993592121105341', '114090590527200814682', '116691298583836183156', '114772539059130770030', '113897560573669933038', '116151263804676207105', '104302524350132782178', '101021839146249630084', '108870753995803590617', '113428041040224730730', '115774127930703880979'}
Community 3: {'113883315802667830242', '101609112125215472339', '113434799782645457166', '117570997424193022129', '117621212399917535995', '109733876730404017476', '113250691524784561414', '116586488310918415098', '104969644294937516031', '107990440249512216308', '110666694869709575104', '102101676458721740056', '116477440532256310104', '106896834505928192955', '109792655034341345110', '104277202662943073951', '112690790850775412968', '112137071107919749628', '113977984500465768287', '102982640232538673131', '107399320161500679149', '117917773101956000289', '108719505787307647327', '118003507411031237378', '103412293208840577867', '112944457855043984127', '110989004249729156454', '105518105008590226484', '115120856388820348736', '117440562136163282023', '110691689747754400838', '100260118823596257372', '117826637077711958172', '102071498249978979056', '116648978868970467664', '112212805593320830314', '116144731647062741914', '113497497600396915835', '112301114589473009778', '106294578068624155038', '115705131584745732113', '105108784524325873419', '114851034944797948264', '115821408635470795134', '113472184832544483745', '112369916221417513808', '114242552432938641752', '111141944938744219805', '107405010557528797796', '114991677091492376820', '114919713161539975403', '102017036366745257635', '107055343031769974747', '110955165827782524018', '110953639273542670640', '110854340535721492783', '118154522440362814307', '115428993145818153559', '111428460282110348984', '111789696120701217069', '115816648317907146888', '109865957091863414767', '100915540970866628562', '101298898622388209336', '116472423586843365534', '110414002328246477699', '115060919815636493811', '114843479335550312813', '103453522098470167898', '107591005438840138933', '117939436980939541352', '114874451654939458864', '113085220237270354658', '113258478883695264742', '106658849511427440492', '110967136412854306545', '112750733404297151260', '103045179479756335714', '108105990957250238326', '107720181451875581845', '103151662984771639485', '112917540183250234327', '104654596117144472007', '112314186335447733516', '103585495295278181531', '102213934827347582736', '101140516949313637221', '111433926516886244464', '111919768120748204416', '100507636570832524160', '106115198697251921957', '106660622179104353560', '111263120349642126902', '109402843119234354702', '114781733768882207731', '111513175269598249760', '101103242784230519197', '108058675047399135236', '105530236609060376707', '109079753818826549254', '107810397086335168494', '105574658238411076580', '114829852257653035289', '113087544984248028809', '106696669059059026665', '112151654477376481691', '112786527053466874529', '109991859049851549168', '100048100630151349283', '105471005522417570192', '115231399050183903185', '112556402667625475320', '103675828569740169448', '109227682559493353301', '101118968403881827448', '116553658966777600813', '116814996618382202891', '114201873098203500175', '108201505701156348249', '114443641173383728375', '114157104224723561801', '107991877251879586822', '113008325420407083982', '112366735963271550830', '110455237625304376553', '105423010364729238500', '115967668423721544158', '107552481929780975327', '118079092041447950546', '114530703093564359827', '108700021622587201432', '117194308503266307365', '102738311227610607654', '109909429289936483114', '106098018662051013999', '100630358312306988767', '109436874556875434983', '102601648945820979338', '106990819982242836820', '112912266573852052346', '108124928884449755980', '117790577704176539765', '118118349987811516739', '106870979209204208803', '111009973848777420254', '108009945264222982048', '103615826724671298120', '105340345334926146635', '114846083476314868855', '102096458761857893084', '109800070104856729710', '105174429041335228714', '101965232098049360563', '112423003619203285770', '101852559274654726533', '116028914197710603107', '108948443886925898767', '107483128324124814228', '113020499347875878373', '113412536681835736575', '112510807118900440226', '115822739011040329613', '101403398734300997354', '118020706658509952016', '103011399220706328848', '106100750915461843602', '100005059224029431016', '113718775944980638561', '118221427628079302612', '114743790103732451380', '109801044383691533431', '104522995890838839665', '114937629945637321096', '111234871049585273425', '115235718990223149745', '102903606767281565472', '118108325814003963743', '118333009720408143699', '114757922636193548445', '100594327037964092823', '116226546456684670493', '113387040508692923550', '105580276533104127590', '110528202096810721992', '102383418437695456740', '116868570322188381318', '115746067570754847637', '100433823304745846796', '101268052921338060862', '111402923913640845655', '100552531898971306220', '101466381868120571637', '111654988216301084265', '112923782783591735024', '109711299858829363764', '112912440438084031232', '104382523699313838384', '100964697179613756830', '107089444063153939135', '109489575895255638957', '118029848541356213863', '111994420797579856627', '109458589098107737736', '110527094571018831478', '108424273284462813381', '111538684930665702515', '111824654238694308207', '105496821604688225199', '103271447027451185788', '104767505807856693311', '103350718269700384071', '105894942073754440199', '111859451467712699102', '117371228393907747239', '117619821330207694301', '113090531190564927117', '103372435287842250035', '105731578329554893462', '115275485457246100819', '115763820862294051342', '108838325217644257253', '108809209255270229160', '118197341263476239819', '103763936161679136428', '106889425288239113053', '102742333797709782764', '106893785144116951996', '106078817258497259289', '115410587965033872537', '111606152571682361481', '116052685905739497155', '112333756349874719661', '117947249718183389626', '101016212917032273183', '116965622289845329049', '103498953228354923767', '100318284953757812785', '114561549698767128587', '115092344632308628233', '115489578657005415575', '116235714265664045436', '101792761694094061036', '110035777189974883061', '118224776879738188902', '110150568217057141750', '105478686259508551243', '117172210890929659970', '104601040994962327916', '100573010784683419826', '110200115381518276083', '109610870821967806849', '111804247239824865164', '104359391375529335854', '117657888417980998852', '110573952887886961621', '114966818567496100247', '108838325803746121114', '107701945493855915896', '114772370404010974598', '106244331832224111960', '100458658122301138710', '108455451306099346350', '103569112413723215146', '117286129892471389479', '116940263994260396755', '110710165200354812487', '114023941350334024054', '107868844306369312882', '115188225931820970468', '111005826307581852443', '114707910756425953932', '113522539725181051005', '107754205740456364800', '114753496995891786832', '106633617085865801018', '117966388430242882951', '100236264467571538324', '112144446854990717283', '113390745456243234557', '101528641740322003456', '117455365995643899222', '110644445135325263429', '115603501102777898212', '110539629556793511406', '108360574989017497426', '105356097346361614627', '105471831889375930291', '112346797355154473722', '102050956726692805235', '108855274112594118541', '101390318003858590278', '115419774656924121211', '100880476341151112685', '107170689150324190829', '107511265654154657145', '117467979182503050040', '111640352231056603475', '103218855410099498497', '112548541403272545854', '106644585677637197494', '109654360331158943231', '115272110932716198370', '118429565186789904681', '114504022490238986254', '110844767706810088397', '113330053950020592701', '110052889787728339761', '118339706248486457324', '104605357682429534074', '106123026171763346651', '100575343686501608416', '112877017169687576211', '104836231516206450911', '117589263632887510143', '116658475412812221703', '113704987612352192056', '108237467234633094380', '101242211630677785896', '115595685535906979585', '104900819062422452874', '117171201152631567575', '115334025826276681361', '112938759017605010116', '105290663275075554927', '109743013888134466515', '110831145427311371794', '105785197801929483800', '112158946526405058992', '109817390928698661687', '101538285986829851250', '113031754286259898178', '113012020626169688172', '102473385896850739603', '118384484773476941617', '116431161234632497214', '111622998392424193652', '111288399287881066490', '102019392599372845523', '103243491383448215539', '112349335732307259423', '109923537873335737078', '100105923650813125103', '116088125485413298995', '113684854375405108383', '112422476359943602384', '107536260462242767561', '115587504534833322520', '102949102684766491436', '115539584789589326849', '112269337588491181281', '105920308210036883695', '116157010824114433668', '109329336796795293525', '112584057558986077277', '118174062416143622786', '110807748106301476611', '100730931531762511307', '107785713244634743795', '101130571432010257170', '100852581940874962696', '116041625966963072754', '106713331971497474443', '110142561668636219737', '101094554205179528501', '101048139535734606669', '100598525921317755223', '117681050284935242208', '102518571087840972824', '110780321199044076338', '104943121771076336705', '102040763864961338414', '109002956367443464058', '101527637962745249750', '113870319652943892996', '102166233527754546718', '101537701971780683832', '113789110566197571887', '109671582602405195390', '108862391031743001286', '111437132356319061774', '110221986970653589079', '116161263828563383494', '113683207338912869760', '114075502070973422387', '109654332448109223598', '115953857178608709061', '107396656126703375612', '106437903086277993928', '109948351538781513781', '100176174863971125684', '101812076448641794357', '101274953308299427237', '105637155712287876601', '102062087222207096193', '106276627738754814325', '112365942617557707985', '106586390584377828999', '102764366355960202161', '117633122225583480245', '102618047349606277909', '101799406636792505677', '108017463391867103666', '103381102027020932760', '106445620241193157731', '114628370068019603186', '117585333447566421183', '111172342770839497715', '102522616575011676795', '100502566205982452982', '108583549213384762507', '114072007215543049484', '115180478256899635019', '111500093521014695341', '110736470473535126070', '116957518256890679891', '116875895747133156286', '115421207682636992677', '113406536089192162223', '114326598742556205027', '106051953060677479608', '105187299599575962484', '103554966970432387589', '100290617277101292673', '118133553812245621551', '110935921982376244005', '115389600834458166596', '117000139571713536948', '109675421287495265133', '102456090968735240209', '114967094136789951378', '107354144303270486690', '103398551268914732377', '108374803395214935377', '118376303525124349504', '103646849727268048875', '109428803912354866795', '109548702375890488765', '112870552917404973130', '114956988760493357013', '106808060895318165506', '111144451219356446211', '104591893998825912318', '115750528894734726151', '118293936299293705220', '115066354200158420114', '105630059876120763094', '114299746171870293943', '111539649020426078434', '117128672203954655256', '110637824662938652781', '118059692451400213176', '103976375898267658756', '107827345508550218391', '104390580572210438466', '100212806422158954977', '100184823494846392025', '106202070516438201186', '105155765336297774634', '101323615061776277624', '118255645714452180374', '115451464212929292835', '116272754688583808397', '100710618601264319576', '105196844410504254818', '104699920090529948458', '105851047939737858567', '106622374443783996764', '112376773050778364537', '103969372934305933508', '106375886193820820390', '116808263509562230221', '109214702386760339292', '111269406156890337892', '105286048295854104211', '113360066664663036478', '102304229644881817011', '113370076684734893223', '111881318213193895554', '101389442397237522148', '104936388233975297625', '105795505690851684660', '102881488089763968454', '104334993139856754317', '107354888193975541456', '118224919329244290170', '109844337745513826994', '116212350868639759457', '102013202074577222444', '116242922868315019562', '115495788777770020849', '104670132175329796433', '101263615503715477581', '100811789898566003457', '116410900879804902915', '110136818693267034218', '105894760755439344491', '117627559431013489137', '117561536843314919073', '100401683392479420272', '113395633871242897261', '107562684952021749097', '113654461547690050667', '111339002486794193941', '105385216702194875977', '107932844154820046213', '108792426990692661824', '116524473777969007095', '113586459466552877584', '116915389609964980297', '101373961279443806744', '116759049068317449856', '116457532260807710304', '115927870648363036195', '103442974084244428091', '104737048903894625958', '113102854369709041551', '115750944117043454243', '110127399774956197922', '111327802952109899456', '117485739798796938084', '117715458422919571502', '113048604335341521429', '101691152556611912102', '100477468779103147764', '103185870819487425439', '101955218540476497502', '104991857546436531101', '101934167568860248763', '116393647275025539493', '112280090049176075034', '110122907004584858863', '100979083303194896664', '105656572281780568085', '109584101159595963470', '113809685075072670366', '117933248848152566378', '113037342117633310361', '117326953697823621359', '112801448828869860546', '104130543247670455686', '100041278096196429823', '110384859728784051439', '105865424561236837302', '108941188694777739902', '107111614966732663273', '110420753345282336153', '106250234179615025320', '106782766352840903856', '115683362169779591399', '113894473300127215452', '114491795222303621108', '115035045718420869978', '112499832243433350911', '116065573422637185820', '116161934271388965058', '107740336529507185680', '109999526973281386394', '105201622601914587002', '100583561970829086644', '110883710991251024067', '106022059623331640125', '104467587150324352804', '101783485458458787405', '101094004539457611809', '109424967140755023051', '113483482538827761186', '106095666772882084993', '108746713310478380877', '111419564832268061657', '109657814428029476085', '107601723379533746123', '106672805204073898765', '117692038325045546044', '116163644024867101092', '108941983487083451766', '116247450331361797635', '107005847245951907687', '113621734687034433968', '110631676822794043944', '103529689741488663944', '116649538143102503746', '100624241693398887245', '110495386740742342449', '112786890450122407289', '107028249541618642358', '100661648032094165691', '112775759305765347433', '115573740149216968210', '105131784437248000408', '111077070482960930502', '114408733617743313108', '103391757252321121210', '106129167040008874829', '107824987594229342846', '101168532469871735861', '108501716828315561387', '100249317670827106747', '103629731051192145129', '110913165455688349197', '100616009114067625121', '104513612772021842037', '106267113382617377920', '113427970254443655999', '101620364414782384050', '113814992016595479383', '107713876930091528338', '111151133269873073822', '110389151422928706776', '116344214380239492521', '106322266355568739242', '104339683829751927539', '109122539496160679247', '106700825827431997607', '113395912577264627875', '116098329946547517089', '114750927985208119278', '109523302262898329619', '110971010308065250763', '114658973344321911772', '118007706416783694636', '111284141301267844995', '101462273708166596778', '113103947616627203244', '107023475113646570269', '114005328122606474348', '105507255007244881280', '114549369786832381138', '103563649360039815214', '100099435169784812933', '115359817964400426145', '111249812419417207957', '111752388450661763568', '101322883828672147607', '110974772585842612281', '103988783873572788367', '115427304117818042693', '101785677595622411507', '100057204553955934520', '115113673190139445162', '107872453590280383097', '110565451469358079473', '114997646523916272538', '101484944350962755247', '111033676716092524756', '102346207108878497431', '116265180994399322519', '113685046924164727952', '105271498619135161075', '104407274461699776298', '104669716112267128123', '108437871879281403721', '112299693545555076607', '111618528226515477105', '105629715514672156567', '117943326930081521960', '110108796184064856991', '100258172642683423127', '111981146510158553570', '111171252787735619243', '107433998715834030695', '109810079411554717199', '104165442917228318542', '115259550286546543842', '114783380984236981708', '105035030998805022753', '118390681236880798223', '104771156674233337741', '102607345631891877651', '114733225186768122927', '114741611489731737021', '100324081864091446041', '107861068043141962470', '108114873577703698048', '103992266890008946571', '116896196880931536204', '112538775834301543018', '116632970404223711210', '112328251784830479723', '111516234103873284674', '103547101416445539717', '115992513109398635156', '107183532832768436928', '113716387535901345607', '109499905780911177260', '118153590571996026494', '102313269957622329301', '100358994198405696624', '102579128948597076223', '118077078280424493544', '104478893233297648919', '114682714977718338586', '110631800908004539176', '105536307565744613528', '114023795588703135881', '102926741437771714510', '104325527624508172864', '103589891874297491840', '102080433660290300928', '104605541194704556978', '104162107179121352631', '108494543072985022907', '110988564762285773145', '101981930959576633793', '107204841083066083308', '109213135085178239952', '106135206821514895742', '110906328246114022891', '105149372392469422435', '113284190506122996935', '107752922497809632157', '112676243867022525487', '116682290311789132796', '104897874677397845918', '111455734173700823594', '101594994894172024242', '111112809838472063992', '102015412767937057734', '117273282456782969151', '106571738986545318159', '102413014337601402272', '109824447107773849855', '100902001366942334374', '112671613807103204042', '104159813641705534278', '109245939643334110117', '100464702037351657177', '111985591431123292661', '110502833538176908275', '101337662271487138024', '103370444681603968314', '105556083857866545452', '109911419351912426588', '102618973624412901405', '109429236594408016618', '104249870978376314541', '109347190556771542608', '101586550030071389138', '100799578871897092901', '118118473977375948709', '115193931520436011967', '115962454026916789754', '104155770298251438878', '109217461409629684011', '111747381273060022672', '110544024046902742358', '101539817178768822220', '114518379108733298129', '108538835381255306688', '109663141444767934502', '115008824615790055217', '102597552296971195035', '107250312451976254346', '111518627657059019573', '108096298177137829845', '110277817841129323109', '116323264655220676323', '110166492526688067334', '114578606828311548159', '116483744752939586910', '113727991676405667484', '116185369358666429335', '111410116928320191362', '107507539268974734333', '115605115857817552535', '109784634263967843326', '112052721465938112648', '101080167733770848150', '117750925255977689651', '102932986213331794453', '111764754316869949519', '107874114351340563166', '104014153016377817626', '106184175792888814619', '110524006957547011426', '109562971361392257195', '101859489363185724132', '104401462206426890612', '108082814806291478395', '114767962677072790575', '110901058555803377041', '101579422741533419411', '110836490849183067559', '102629646689678003489', '100102481568300652845', '109897370131343108161', '116678609515561669079', '102418378960391648592', '104681718660449509746', '111939322609604100460', '104576759851444232491', '101739695836356838918', '100398188574403174312', '107295865983836264392', '102646601055298646242', '105754002562827402350', '116383082805688088798', '108834177132383073756', '116497515893408415968', '102311439552581935470', '102686863823342971078', '108330159313189496822', '115924865466302265389', '107245707014871927345', '109626053182294516293', '112055336169088405498', '112507886156998828584', '109499151764071240568', '105160956312047610483', '104051069913864446196', '111124838372075709293', '117259487643709788649', '106200049517350917551', '111403069523509898883', '103098035528591529767', '107696134607862383198', '107015885392045603867', '110367850779921090576', '103468627324210877987', '107117985805047100401', '107789066767692867664', '105183263336863590364', '110336976038750891860', '117880813751228693103', '107489144252174167638', '111593724138709794622', '116109535166109264465', '116254560709376130258', '110561114736457137185', '104394453888455887285', '115530024341257565365', '103990290144825312054', '115617371084920991368', '116843613641869316377', '109128179703780508212', '108106866986930288892', '113628787636315115995', '109511852512356587228', '114559845119114226260', '100684604119392424162', '115820788059179744265', '102021728679348571278', '100723128209788960039', '102755588888811318476', '113585048306279037428', '101608839534887443277', '101062426971907362935', '110714763382504930795', '111839353280168477648', '106729180530371732637', '107436368722678575991', '107408720924877751027', '107343380917808930971', '103770531046791651608', '114528278590085046475', '115814989235744544376', '114611629365777822843', '118226059102961484592', '118356104912469282560', '104394361295136862005', '108800259685892983047', '105485669729443905039', '106012744003120401305', '108890852336977170828', '113158263964642367060', '117125550255177987857', '110455526548551633166', '101098184208398375930', '104516202695828413032', '115213992828326539397', '115078520436774133103', '113627164841587386021', '104226204634708620041', '108201829410137057543', '100246625603662649365', '108626373272269035876', '114195458404542931606', '116180311728262083372', '108689366441836852610', '116272678334257287914', '110115097224285661710', '112444400897323882138', '109788364985180710349', '113618595979676168664', '106206424594758074492', '106031725249629160824', '113953524641382928797', '113273415281789403467', '115294309019769904190', '108902823853548117994', '113219234233002030280', '111584384391407513657', '113936855516056736598', '103453640060403310214', '106096935471968988677', '112547787110181924087', '108562908057958673728', '115029186078239273995', '103752943025677384806', '105742591547943280092', '114254706162079043348', '107952354333947445068', '100570943621691880802', '101721585951299540345', '108273660324649677046', '103157838382139356964', '115127686578942145136', '115616918416685751736', '108099300904077351421', '115877375199602117404', '105508666909703535708', '104042965789095032304', '113477263173666842886', '118301727363923491343', '106962387814194435922', '109725757995563930722', '114477973013769344881', '106574411048653501629', '100203083680599645929', '102087193593331908779', '110223460047500171986', '106417723185620306671', '117810670330594453912', '103924712725542888221', '111013406192967066640', '116829662773256359149', '115904636983755833973', '102636461185049359006', '103483946223213592002', '106533767817816079660', '104506173414420325418', '108274407914489166921', '118269717526175136537', '101081302875324360817', '116819265826478886555', '107567168414307124510', '108095466314892669807', '116203063268554516602', '115112963373935856296', '116313602036813189719', '100458759797322732511', '110341550160958577300', '113327206574320929442', '101437802758827481019', '111210480109424717206', '102921601326108921561', '104356722700192214235', '101132491628219449377', '103145406846784293020', '103102581616407808980', '115347824062413314605', '105741621063381208474', '101192315121866349980', '103206647793946151847', '112529106092946833762', '104276927696606731947', '103776299476527190352', '111146843200554533328', '114129551797230920264', '101453725661200998970', '118031155058162256444', '112756859469531650254', '110109050164240978800', '108445922920120075749', '112235412989755160721', '117105039195451218708', '103274398541354707265', '110084674320917119207', '103463612052622033385', '101234972977475021538', '107707761163556683671', '101913623470973115315', '116286807521280121863', '104607701186113406614', '108195942879356572530', '111083657677685307379', '106464213662053657486', '104654380792556709188', '100003761748305295041', '113050513428337489881', '114181689801575858831', '112691067691668390264', '104081052260915687825', '100982542565040210759', '111986746929163950657', '111213696402662884531', '111469437334144611638', '117136962215708145516', '111263411122757438264', '100081010984768669358', '117717872548259914365', '105300322194480520779', '109794204639353397706', '115106430643981885753', '100918044514429497479', '102312649610103790540', '108038272385419338752', '115907986192399529711', '114898018843211717646', '101957349312029873767', '115093240521874554718', '109980395228023044344', '107068304178800813666', '117302873158452325530', '110573017971856600642', '110140615812755191372', '117971651738018538723', '115356263739764802677', '111621508968310608742', '113566412796628737771', '101293584355009316719', '108630174113578548767', '103400251789793470864', '107530472018245404714', '117376164800382541126', '106864515140371882387', '117125451619389035762', '106471196851060251721', '102656934497613163144', '118217464013850604733', '100719382306202809777', '106078110946979488812', '112349918645007947398', '103010544880173497617', '113759681688845662781', '108116490037502226502', '116077052144599127950', '112220510445134063980', '109182912256270355931', '114352327674779556499', '107953487622985570781', '103330774212148294339', '107219796444050900221', '108380092207130051717', '109117683049682245427', '112486405997992686080', '112960355294745822387', '102890988057972682631', '107908916153487002954', '113169486269154517176', '106253152987149044626', '110230281306766498092', '113847951893881070422', '100904865892153488706', '103385680316204614182', '104809828382229169151', '117951052831974893962', '108633099657919433565', '110552130182194634361', '117577916200931720817', '116706759796316956635', '112092914830115850722', '101687084684373087880', '113216366128482077350', '106488284533523054088', '100645570603017664926', '104530411504508864871', '110834201342884968996', '107495277214296427779', '109751557654108329618', '115754371967324227307', '114157177213057782868', '103934604334733135441', '102220192862802033044', '108240124343851331192', '104635901512085953672', '115339702540518089503', '114601997315547801492', '107644002962094403888', '112441023363000599480', '115837821650007187903', '109625437967128793145', '110308504049793867883', '115189217690184894864', '114611456210780217094', '110808079006054190852', '117178975214870026107', '107926815116586968333', '108281923609340751312', '116254597254686010852', '112541074199410704452', '112322428385000170224', '107189810823071706764', '111215146739215249748', '103899043917116388673', '103258840321028598561', '112430913384106814238', '111803395165575755217', '118392224185705316524', '105661020346736383659', '106915458430369636793', '100915648524438138086', '118189673697734123818', '115082977301557449995', '107954398003273214795', '110830480322340378413', '117454395045791446359', '102479713175050730556', '117435799714060817547', '113755187233078454885', '117670636409478368206', '107281742023232478718', '104792719356592263558', '108539408842832063454', '109003630697291491809', '114277281405466837036', '100429564727464307274', '113356364521839061717', '103888069615589058326', '113025384249774110525', '116642857391974581307', '112207758274508923535', '110433465871086860393', '108906278942535866848', '111856427400498745265', '113726904367063966559', '111266241290326120574', '108643489696799455633', '112711737669601902933', '101652461833949511955', '100961385622810058361', '111582178452856649868', '111907009595057957530', '115686992336431298816', '114457137132357379883', '103816950273290237811', '106210425220361000884', '117141702878308075587', '105396609818194584786', '109499108418188468067', '117681568987023143888', '107378852671304732209', '112582061365461975085', '108834613627264806974', '104957819454738884673', '106312035620164033349', '100587764208123858270', '108110070511706099461', '104474402194287396870', '102587119330642204790', '103424506779075759623', '110172348091748214966', '100158522818392840598', '105248358908992136650', '105201578683310410004', '110800512601489246731', '107093730168630710381', '106237174356318230057', '108349993144739467020', '110834083330330746172', '112891439606997260149', '117526485367587696122', '110785799423742851756', '109790945278744699004', '115548161056707812871', '115724883099396204735', '109329350502612958804', '101162901852335954968', '109178425604835223260', '102937964437746833881', '109131071610092911758', '108867637736775747583', '106859040453161695683', '100903238217033771636', '101468873171604292981', '105528122498893014595', '113849728411118888973', '106569322839607148261', '116272870812037282078', '111211953317109383011', '102954878166557446741', '116507162463328305307', '115031186148141783321', '113973458554656282296', '101608931133162314697', '112346555744182325595', '110304595006233532529', '105280829499546436538', '110022074717522784473', '110995682292696180799', '107826059696278341352', '109844533275135409759', '109980312821323573797', '108695451231222848079', '115200235755880484786', '112789786566993332700', '104577505941506079870', '117949314904695168818', '107890149107717663970', '101835420372533741668', '117944539673553852609', '102759194596429227036', '114527718402660307427', '103076956541457705917', '112887471725868554772', '112968305388793808815', '112743544275671578872', '111543985064708695698', '116294170283477530567', '111789849226621844437', '113191905318463018774', '112849890402794954572', '116199701420780378924', '109907363224638551048', '105585767379298930605', '103293516438378653921', '102876770831488383664', '115683348724599782363', '112404099714545791798', '111984362111271204995', '112329087841379527102', '105503602075625430087', '105492119742825421749', '117983310282288445588', '118219904503271889462', '111199528975534463119', '102388453709064137430', '102192345552644076323', '113065567519601895828', '110786217620925031744', '115129347558613683514', '110287894893102510451', '116640356541451077705', '101303062064784572033', '116068236658909769501', '107428469635365733087', '107107966604134599612', '112556312588345805396', '103000734287338406086', '109290127014944082037', '117788543090716879004', '100565437335936094929', '100244352763302463699', '109468054380890853863', '106564235165253151707', '108361767365695229212', '111310222808871521546', '107769120530509223004', '116135708035009047731', '117897890889593370418', '112594607056304480509', '116049973970424995720', '104519096412702496856', '107330218258870552495', '111101690980834001635', '113827150066985714068', '115281424372604157481', '112156766403680645923', '117830936909615789499', '100103314581848288036', '104359568476968412848', '112939231215211265529', '105716329127556664968', '106360687191375633839', '100947437175799554403', '113129025079192880790', '114882176689398353065', '106834531134885596306', '109147535954110669362', '108742841816580780267', '106324582128454068388', '107990011288459133199', '110457076175452682550', '100880327248976971032', '106035920703864837866', '117184181258526632678', '104241567849916091297', '102722806370541778588', '101491135965840894896', '102446706738071032208', '107931647117458906474', '112016242624005519460', '103953962877365683102', '110816132992861649933', '100340384372687803232', '101686918063478971445', '111471826759798192730', '117416506783244146900', '101963231176262473114', '104716550210056191134', '105974344028736728341', '116952164068448524091', '118075896681547272580', '112965608024184180683', '115976423587510251932', '114138774798323647714', '110806949181190360839', '103045146129358694642', '104918357490897922103', '107490600889040777735', '117863322265515575855', '117304281612077152424', '103947263003479228316', '118391348074574561641', '116246691381118207708', '116868835523460042553', '112568526371833014787', '100872876956795042185', '106673611724400311137', '111346029664121783189', '105213636585253009224', '110804953626559077511', '108492181864175044809', '115249860954021772424', '115212693003394146534', '107149075470261453144', '116040489036275923943', '118260919507777028608', '115936804176235600319', '116042504805817667580', '107560664914597103734', '111726030521456582561', '106478996597121286809', '113813534502443050477', '111942434484944613215', '102022464583159378737', '114785407040665700728', '112100900252410661099', '103869667675049877150', '118369314436085435945', '112909430894304899898', '107708532204858704491', '116658211265587112997', '116969930454143715987', '106226563782321781983', '116948788146482751191', '100543926403936709353', '115783794965589110885', '113058977308932716504', '114811598964917892835', '117614470593378431513', '117850061384649333790', '103052947271067730624', '104154510648876236073', '112671723013063869826', '110896731679436922078', '112879207422835329028', '107420755679696384063', '116325379569277058328', '103452918388494679539', '118391161680564572266', '113748350283639867334', '110602313084963920390', '116929705953829659266', '107667231360771923031', '116546289334309735837', '101898471192875726315', '102163078032087488547', '109364225972033274255', '113367846110278339850', '102339371153969529419', '102690914127355780181', '110527332382139046457', '116202726148928256666', '104135405702141570829', '101502848398462970704', '100940526701263911236', '112012194581262381547', '112492868331522062111', '100854204636699570278', '105514142573871707546', '112427423616769307389', '114892187428023648006', '105181601937151625687', '115147417795391515101', '107988063062924494316', '105389364748387891649', '115260307850276266872', '106631912801563108406', '115687372850366459426', '115571267671256018716', '100148131753059528231', '115108106610491503362', '117588816027131411601', '117135648419896209276', '104749200057336652346', '108990610107970137958', '108851026326071355993', '117336480758197008542', '109876318275533969777', '113831137807594102699', '112889470949411680962', '117280301082168371727', '114707905712551612193', '106939919304100725845', '100284380639791061360', '102880992544382504756', '111279980650930688521', '100369531175324105364', '114789800183078016840', '112022983294967948367', '116835282830551966083', '102007559132620091852', '111149750807150802316', '117491021008888340305', '105519285935184162786', '108193000606629350533', '102943812247746543439', '107788883146545236198', '103093618599820662763', '111248348116226207971', '114334032885239250126', '116283148271216550554', '107400819855192601582', '107033542025676408078', '102654798672507674091', '109519561451988889732', '114310432035877573700', '115727111607685613786', '116834613510435630346', '115665147773049983469', '105985398382970159872', '111332473976310459302', '114146479114949843175', '105820718403702856779', '116133765361046189827', '114097533829202774504', '104031371678041576333', '110649033113469966951', '105662441312581584585', '114807257227149972393', '115185449105972818666', '111026681950760455611', '112931241997268074535', '108665887827650124203', '102450415382144556678', '109601009311059762503', '109255762671976112468', '107528636311068687610', '101335258823966012659', '107165908810199816527', '105640765558937706569', '105865268001904567389', '108445533870173214662', '109066955810836133104', '100694501176315722469', '107803544756471423402', '103373189090710505743', '114435675631396141366', '112156000858878605428', '108853648066653779461', '107838709243155596404', '106787788124127706441', '116396113048345875138', '104948963634080620157', '115004948289151880409', '100429597690129350763', '102770406108469881158', '105065317973590246539', '116805164011491504484', '113626341655414044020', '116922856661386392350', '102999624067585642289', '114213262554873736689', '105756745201162965731', '115899601830613537531', '100923751725766542305', '116254230335894208317', '109867081899021414900', '107511759174870952997', '107187725863982533993', '109867682146917322989', '104370594274936446063', '104378087635483587365', '117066092056374759512', '115592917377507554334', '101733529116864904011', '117455582278970840221', '100909633832455464327', '106613290939912403243', '105665080337389619151', '105815266136865728077', '101841733453110538868', '107861794963671398272', '104139478042326678050', '114301621633878112748', '110806755301520450833', '103762780789789554804', '107501503793007677853', '102038874723578427826', '106749173016722024279', '104296258582816548190', '113065587695644664562', '101249926870736682397', '115437881143074899830', '106679217619062767542', '107307708524394964276', '101099595742869412229', '103236949470535942612', '113180657109136206536', '105878711582676929096', '110065871079016978677', '113408942588672463601', '117430669594590710169', '108187313492122620620', '105477094955923005317', '110973272040036458313', '100454739783658783958', '103698889037599783920', '101504199149919685088', '111376872709029407490', '102646951730116048245', '107609501158534562375', '112373682342912312682', '104093540465595665986', '103333192131344312115', '110550818327196789597', '111910535419751834600', '109278663555282462593', '102792782688794235712', '110859635804619214661', '104195596535276000851', '111124930081935539248', '116075626223022868270', '103370783421083020594', '111064285194756161737', '111327153672889622435', '116286873545653281906', '116147065658713341985', '109092010479445656922', '102985033048923547232', '105903403348858334517', '108092487151722513439', '114428750997696634020', '109804849619877910518', '110480044561494428983', '101952997688958127970', '106563393217130947689', '106089837993051709758', '111073641048817393213', '106639816695336343746', '113028758029278367373', '108904607472189043979', '107213397269038689202', '100891697817014959553', '105840494293846520898', '112805147731031731631', '100579651167801162676', '100519245975462538531', '113312854563757825890', '107687949190840697864', '107268853930054979464', '103796857605429327044', '100903445014524704751', '100374471858201089068', '116318044389289937577', '109021017551116714359', '114835618008913240560', '112507990251148189537', '108215644829092784557', '111658704299574083731', '102762278318790381974', '110864864429137192173', '106890632816478503353', '117117769475967183547', '109828573684213237175', '102626315990666289814', '102755548808767411605', '100998520040516968935', '101101086295080736193'}
Best Community: {'107562302583176005973', '117604474758066227896', '116438477730966655432', '112565888022185219747', '100605864222557374608', '104112700502285331526', '116608690343216001321', '111164095920889813531', '100471039405682805612', '101421435361785804366', '104558996796696834366', '116422773158129145495', '101119568117646041384', '115431853773627038741', '116742396272396002804', '103806016066388243587', '106563076987268237912', '113683173113414215373', '103201238410770468762', '103650951579527262798', '115424061231268192015', '102245160667846222465', '107958711860940415885', '108379995159495341811', '116706588382945742404', '105049612401300011029', '106635473175875925613', '101224766255596945219', '116953382764220034830', '106541664466958079149', '112413860260589530492', '116445437433162945363', '107550335129662216109', '115961021629090154025', '106792630639449031994', '115516171542271021123', '101145980349117737014', '114553764127573871154', '117860386411463323543', '118207880179234484610', '117728611187295597769', '101309215377089839393', '107953843890635271354', '103059428109795353199', '115230288324573016906', '105466699904008897296', '112326507397759634500', '102549181577943816715', '105426743019195604827', '103200491340117663153', '101377314432124184416', '106725444343496024495', '112427949641078375948', '111143094580674346698', '117473087558401216519', '106517092226488584705', '112632260187323187916', '115739659213925109676', '116801584068966298462', '106096361729029699575', '118026639398463272784', '106073502505833617615', '117075503202449801357', '112836206483827885255', '108209879935982921111', '107028157462218372820', '111583991024851468345', '116665417191671711571', '116368508025645108774', '110686463635396874206', '101285025178738693068', '105701312004900147888', '100886528220085497544', '102854726264949312248', '109667890964357276732', '111343994565974357062', '108909492433674629621', '118169756271670551157', '113264420552412762530', '108805430409141907975', '113380314916269290368', '117523780312701271966', '108091327114614335688', '114205894819109202624', '116226932711437764309', '116799045993451756042', '108555502588425470447', '106378908153930162657', '103973455051678273599', '111118969072054016819', '104428967104402641181', '106121614599490701044', '102100122839131553339', '105076678694475690385', '102725109790365996602', '109095289428532932206', '109907140932335503645', '106154669044284257296', '115595232870915667505', '114937925666302803969', '109876915588291208505', '112036918858998154353', '115666220350944366974', '103002460761284588099', '108572627333958532747', '108382816543147706528', '114892667463719782631', '113686253941057080055', '113301090943872996184', '113413941952445486546', '117071968223305894541', '110889775111765717798', '102476152658204495450', '103649669798083626536', '108542426628002931624', '102239645172983099492', '101595117115653228833', '103911607910068922429', '114814005044450108245', '100525151970482090340', '101469831156864434339', '105898851287256125141', '113381419568450917747', '100852553003843098980', '103903167257655564644', '117559951633238789877', '103326923984364791144', '116438093255495233247', '104789218149315172931', '102409541521880756024', '101374291154422119765', '110030220986081791922', '101426379407929104607', '106649978359921982022', '113249114393065213870', '100272572056305744950', '118228519258164366941', '114789052294324286806', '115639700532046080427', '107308430964327858950', '115470071077898720170', '117841284165024027243', '105941540459124123898', '103952447020373678046', '117710159389064279424', '115530776534617554663', '104129842883884467271', '102029505169101002492', '118161716557563091906', '104679077361015353573', '117554722970555088332', '103850326109556474629', '111499016778755078481', '104102743248207705784', '113420422244530728570', '113625462103500841369', '116334827514261561554', '116532796765106918781', '113391326838583895709', '118062829465210047881', '106133480923323663427', '103274064524957433652', '110592401308316669248', '111962077049890418486', '116944634206258122974', '113464569897311842405', '112270466495573981484', '114236604403554541461', '109660946159817383241', '104291276465722490992', '109653469454508385103', '116034683958714362546', '108618310739230261301', '112362375146907129258', '113159698991677084993', '102339821424185261163', '118288659759896393235', '113455290791279442483', '104203344134379117895', '100695006806342072112', '116395157933882773759', '110486517623939606418', '100580057424662460288', '111195838733454098219', '101049683439937737520', '109462153724122490319', '103809813786331654814', '113651533166317708938', '102674763947640278957', '109549484898750371360', '112669442975277292500', '112256312261504958334', '104366261681630138523', '105945403054619746508', '102107147806939041278', '108872036879266293791', '103226907226789753873', '108959577300504968814', '103859887112488539528', '108482500385131341255', '113186623583029971455', '109580245554247104400', '102717360415568313383', '104535574150437710403', '117511955612172117914', '114824202606079760230', '106369182367169177791', '104380036950579300637', '101348333430536237939', '106983800549406471589', '103290228265979018515', '107362628080904735459', '103009042022920905686', '118236147995429375090', '102498471625988139163', '100930217693057805816', '115653522232867695783', '113327376737622693535', '108324852458814017913', '116303122205999176427', '115514397255079403751', '110364855552755751336', '114801797004966639281', '109940597696193991152', '110570190335649752012', '113520924867868062949', '111136943830266615679', '106259722076762380389', '104838252503679069603', '112715448698841190179', '112471890387110967375', '103139040842124238411', '112468427674837540026', '110563351377427897709', '111861770000711596685', '111247581300801050227', '105261334045363619746', '111407034040498495654', '109870612811155891618', '117677434193419083498', '101863305673693947212', '113122231216156783325', '101008239198078836230', '113901826228935709546', '117438479357332725817', '109801463386403408735', '103786508331190020147', '102862864443228156134', '100446424597147316863', '104129971305612636060', '116973390574320264137', '111169963967137030210', '104486088524980775787', '111683391686274840331', '106422711035746240826', '111391100670640083214', '117690673854187012438', '100142397094908216555', '100646334382638139241', '112600205125796554588', '104608290092581364312', '109372974572557264826', '117599181480696978620', '104403899914867381453', '116040565882702717981', '106737452392271403669', '107140884077582692033', '106499409180130178424', '116167786354423516823', '104320324824027999822', '113733130744129278876', '105459830584243636071', '114363764618011623200', '108770653757133854006', '103733061201281593592', '111523509846064499365', '113900173900657215428', '104755428128999425702', '111874748593255024020', '113403112154194398439', '115535723976198353696', '111349868439224262161', '112237365171998001876', '113651259256908505190', '104178463434997368468', '114592751246503219483', '111718830236077991058', '103561847705963058569', '106598143202921800975', '102407737550127021230', '101023109998310006660', '114379643382284182599', '103856102573349408385', '107174603951133855584', '107165093852558360345', '115304232819929344853', '114955415628566000965', '102382609215666183921', '115264738078507482810', '103492094648269950319', '111819236720804784066', '111309155420847096877', '109821232243783448938', '105840250344632516141', '105690023467426957386', '111223823261826440040', '118301801570268856235', '118215864369977057082', '103333429938529668020', '116539099250744373280', '107899204703103704505', '102294154344875880082', '115621321148305565411', '107784212140893392732', '109944522594844042343', '111578115386716207492', '106209012168361375271', '103366463624361111353', '116078656230914670772', '101793532287583914396', '107903247163748995532', '108094760132961329912', '114489504825638353488', '100124389520659251191', '111153455306955308157', '100873628951632372330', '111832530347449196055', '108705174211639807508', '100070927167992422053', '103780053534929069969', '104984388845115004014', '105284909171916066479', '111704031312891066566', '101207314779512610092', '107918069294314435082', '112378905380377418247', '112029092202017756465', '112174656193323553225', '109596373340495798827', '114896892290324391860', '112201990577777311726', '109412400081371783885', '108189587050871927619', '108499030067116895469', '115215962751742872940', '108108877694888605239', '114614337701581469922', '104954173124102012464', '101163289899816448462', '101114516910832196188', '101265639158288878193', '109196927921693462980', '109019814365324450241', '113522117055852710039', '101510589209151784871', '117091380454742934025', '102873670437594949433', '109654603268749269720', '114530282685788609076', '106846340899002453404', '102373191596205712937', '103896020270046143315', '107483714191607682955', '103537153144510961548', '101417191791743464820', '116253172870310497278', '111392229243756687840', '117360973231133071733', '106501988136092543170', '102384669117825357195', '105775193099174598419', '106258635265923541801', '104605946488794124557', '103652441454188509895', '115143234371607892983', '108834544234077411259', '106632092319272001080', '105347022110383656850', '112982358046210156183', '103881798865831852378', '115971103286397223281', '102288248509253946606', '106189723444098348646', '112368281729388401223', '100901649987363776394', '105362842231294447428', '114097075988954205934', '109447323719942836871', '107870240225843632731', '113438256900303213931', '110168117080267015976', '111801042405027358379', '109552601721259087926', '115389971856894286101', '107195212023404839277', '108274608654834118893', '107300439022352685764', '105908255425370868240', '117662256585714941806', '105390077271236874234', '101035196437264488455', '115058384974405026221', '102793763408532898886', '117757565120070816446', '110548244043172681974', '107410390066929416191', '112218872649456413744', '108159551615224338529', '107119125214160307479', '110481389662095773950', '102544236480728869522', '107850361196882003271', '112944155404327241166', '112658633592720298303', '110641519954744530479', '115274420552571826637', '117165768875331736284', '102689221066933845512', '107724746143977942596', '107357017062573105721', '112029775019798501663', '109162365685489301148', '118073857442509254484', '116570889542655364711', '115470184314725218073', '105367783278355685938', '117854512835078688040', '101690113942147319984', '106567570642614609073', '116268124700162834377', '114476892281222708332', '101059049290567215584', '114710341198250074504', '107675155083026839050', '112174039767189541081', '103679793185531964246', '117689417145181059475', '101494708632928300874', '104517282954427853888', '115532919106609808552', '115860661261461064995', '103189315516134780632', '116492394921952587453', '104316443417435189825', '101289274726988466712', '115192055428436328176', '101848191156408080085', '105856621798485106306', '102833622706620944824', '108353600388754742225', '104582625183526964371', '106656417611434168939', '102579620702948196837', '116116935437953807178', '105534748317482585008', '101367748735024057344', '114057121210807129507', '114369704013100203178', '105336425684208963598', '105943946099362806788', '101205741801397157062', '107438998639340158528', '118170768987466114474', '103685740157136493702', '116659288805601011536', '107747838010116449754', '113743331714043885852', '103697821787469756035', '115571998474046088312', '102455282480784055751', '109280758276914754699', '111943154038712688786', '101033463733496411434', '111363149159932889918', '115582623750221438794', '104187365031365479470', '113111731715139693250', '104775518336261105863', '108803781399684733391', '118281061832654729973', '103809839833065657064', '117851035855826465807', '105440794443460562007', '115647026292417015088', '103373050673209589428', '100985192783512595524', '109394349516935036489', '110402644293562055951', '116197193480724162859', '100547273289276772580', '105694930790909515613', '114070067704581747667', '107429617152575897589', '115968081131502531917', '108654833827434771284', '113890545538451545819', '100542372891417952741', '117741205368187248830', '115507263758222797767', '109109427803573497734', '116469556577026921142', '110593153719045225548', '110334143643816920823', '112715813043210307846', '101036778970291988901', '106243037947112322316', '105318217552727882571', '113757927151929258451', '100962871525684315897', '115919766952475225499', '102582297540745104705', '100490965950112173709', '108176814619778619437', '102332158572057805055', '109368654259427988906', '111183544898345861350', '115594937578328908961', '110053263559112570543', '113861527938285739869', '111585420523722254035', '113174179084613493287', '110981030061712822816', '107026299993226528916', '112311470127292513285', '101160407305581586697', '103586615087663445665', '105256156026694816333', '100210163638314228996', '100931778402879229044', '113027837615023628132', '106833332484614513275', '117247033413568229004', '111860166373307523958', '111844772453088947202', '118109358782405572589', '107105890509803563656', '104637837952299687214', '101651096660571767183', '112276313212733068188', '106180723686031712005', '112395376905252640579', '116995710336756123292', '115876313538796651168', '118336139840053353940', '113607294302005885185', '104041730971411982745', '110593319771693604646', '102864451869463538759', '101245272034528389049', '104121609875372820045', '109923941665874520762', '105706178492556563330', '102446618580791135861', '100940716892313727285', '117876399076277118155', '113899310637703974412', '113097851206100618060', '104250970445890717876', '117741745713138927677', '109794669788083578017', '117665613028757061169', '101188200134011189910', '107587796780479464218', '110286141446904173472', '109777274122671124391', '113456203738507213575', '105846917401692687194', '113619286206637523955', '115360471097759949621', '108177835910929170429', '115644305848422451101', '114153859732710523651', '107044550151209703496', '117200102155645191486', '111719717600282565141', '109735868860370294405', '107564207338213653485', '101248054507015265353', '104508507682767510004', '110103641077948436261', '107243787766415047451', '111890945016831896743', '118161364821865275134', '114700223793249061165', '106838416855753163320', '111174147791215115011', '102961867603624296837', '106724435919605472652', '113770461910835900905', '108221835031756703002', '102520902016562329226', '111084290495530231719', '115097392317466243719', '107328949221172543768', '113077201801227398296', '106474488581258029186', '102379940116661442481', '112791456928724330032', '107267083823737229376', '109441649985435981308', '102368034923277047383', '103895402092394980881', '117041449029631631280', '109847418192789226682', '107268299412858724158', '103774436474733093169', '106909780620672931572', '110001339139979553061', '107386249394822179765', '118299777136505117634', '113190229460560085138', '102871123574468799566', '109176413883126930497', '111600326518812216057', '111838135888506280048', '101501633479949673529', '106144537664449988421', '108240851375674070640', '104330156508504717257', '107566737427662380385', '109887665686445998048', '114293347771106721680', '115121985249152159383', '117694109416186891571', '105904670752977334739', '114340540754082207930', '115891696950731235305', '112288065781051354839', '117681034834791918293', '114782440157903842958', '107297378329620440295', '115380528988460434025', '109179785755319022525', '106733655215821410757', '117742154898364015613', '110853799830000374161', '109914328497683240050', '109599220524260072765', '116552941560660658912', '100581198744805120322', '104606614753457778918', '117538315488626912884', '101038793101119748720', '108257497659531463336', '105237212888595777019', '110292076036271913623', '104912287640644359992', '110911002186901540358', '113425078900424454385', '106391588184376755598', '102923147893327767382', '108529222612621232413', '111258349379390009398', '118055814112266323118', '108190746792806228802', '100685931103533370900', '102730864829244307880', '102013213906897023257', '107381319285916994429', '106172172667615086208', '114393690647602824731', '104527616393300959037', '109522193578764168033', '106495003548014926909', '100165282014213649318', '105044049419763533097', '112071803708722404959', '103275414019940070295', '109895887909967698705', '113353182963589668812', '114125900939049731990', '104577583673080872058', '106501936839371135482', '102261683746739173682', '107374647660338467147', '116143938603101885158', '102285954355508747800', '102311875004581334954', '115946655083833154276', '114927294217645926989', '104175289386948474434', '114471141472917711860', '111077510014267944701', '105547060999578080024', '112106208511864515140', '107459220492917008623', '117840649766034848455', '111382451300271293204', '116000959328274308893', '104124592566867927546', '101442356602691809908', '102100900281506406178', '110429856422449500918', '109646508394301470481', '110839739422317734712', '108691296071670325922', '105508660898837488930', '111952079789718547532', '110794112577806705404', '116961301915403381264', '109718346641639271496', '100947550708809260049', '102195144388135237932', '105482021437464314848', '113278937129481000981', '103080784632791833659', '109187026428012507334', '101307099794854494980', '102397482698742388526', '105234964082781728681', '115744399689614835150', '117555990096315491864', '109596219054914376350', '116473937722517787824', '107297476269882277750', '101935995649723391317', '111288574156818690676', '114767803040499829479', '106455052219635361001', '106533248943352121512', '113622055115476200259', '104579882652454125191', '111396408762595559038', '115630385480687542273', '115063620946046993952', '105748801323975462511', '106173671408615232285', '115304645050453722342', '108757188942626929897', '112961270204495595553', '110260043240685719403', '103770797604047232012', '108468423908956051843', '108981679893410895534', '109698184916481633887', '101401863073301251310', '107051820498210074676', '107618022046111276493', '113859540036726448291', '116781884096709693338', '112546953300159727405', '100535338638690515335', '117957562216890557360', '102257603818432033304', '114797565315612213098', '114215018864711870311', '110479591560176287829', '115412016015461821316', '116696943168863559388', '115755165932700408992', '102873175118305865375', '112761340428079841885', '115659255952431552297', '116344399331270961004', '116551430990291119287', '106711803105103787711', '107771181372242547518', '113664876767408759987', '100185707560478368490', '109579042529957997981', '114056084994793924628', '108173674822948928932', '105296264385437402402', '105406713523222664494', '108584673169889423818', '117884476143887009277', '116560377643176212063', '117034484462904239257', '107540638333054762391', '109507653225799908921', '104414006889440330710', '113883974401703134794', '111232989044907544213', '109414049457867785818', '115633632300685704236', '103170712877279687994', '103929057358376044772', '116994290980472045711', '105262362497121611013', '109813896768294978296', '106720493790729270024', '107018066359183517628', '105873814765821560444', '103814653718186136893', '103097764320602190090', '110484413619969864191', '118176635144720693012', '111650011709967768816', '108045606825777666935', '101811340813117737931', '101399120398451286442', '113256146527711720896', '104236036126667853354', '104201507644960011701', '114762500042594162450', '111923578555541250439', '107543460658107759808', '102076033841555832518', '108319282403260526672', '117722053817989966161', '110912654601207786417', '111262146038004038186', '107353422030527162376', '114908847203028092210', '112564135762572403710', '106032143128915938009', '112233299343248188738', '116056482297838775754', '109213355974494564760', '108032623298499022371', '112483309917631634011', '117639700323467566828', '100439677742408559680', '112104018110702208083', '112212727619803298792', '107115180877715551365', '115504455695105344602', '108767948560114365015', '109339805471557551388', '110171339580648239267', '105288133747476371880', '111567061469336027617', '100212507336562726920', '100740773272993108424', '103469879394772884362', '118272164624383931729', '106454856985227008272', '116004511545399403473', '118164441818555589158', '118146622799388835070', '106402850684051126748', '100771715351072186974', '110611852267844360261', '101700857116643556085', '106813061125294796726', '114701241123617315548', '103535806271845766896', '104624794554556530604', '112750091316252656625', '111367628080250080638', '100816418778306854164', '112837439401580368562', '100619317375047403958', '105159288524502668767', '117530250543183103093', '106458554244835260890', '105963804556453504833', '103349689605579281660', '105146060706924233930', '101853012869358195753', '104987932455782713675', '112871211396445499018', '110845149859025684138', '111976179410500096190', '100219691404074384850', '104590730428339310227', '116600660010359542514', '105271681761642615335', '108865830525446695541', '102406042148418309977', '101950208653618672521', '103115473754659376168', '103731782266535133959', '112980020981315525001', '114229157887417365950', '112247850990845108522', '100490516677311512990', '107166369539777818001', '109530008586248241764', '109812154559522809355', '110169982207423433608', '105258087279998677287', '110559306075472911747', '106356302054336184712', '110329781365538654444', '107431710886783872305', '111873853137122484021', '103970527989649695577', '109268388872941447574', '112798804139044187606', '107191542129310486499', '108907552935332685211', '106752261083710991939', '102766904556056700930', '117894830662946357424', '108062915397530291442', '114045800510530461940', '100472608497932134515', '106407425466046895546', '105034949362507677166', '111324012410917919847', '102897134365777759426', '107602882044753150398', '105589087510104431580', '101828183984777718546', '104914829730501706316', '111562638514922412630', '106528103954793102526', '115005061882443895792', '101062235821996561929', '104872324815116706180', '102600774742322762226', '111699855306814304937', '109926473783208635050', '113920526057233976680', '107849922105700858631', '112798516308771746920', '116051047274205780982', '114765095157367281222', '114294757055502483384', '107427356075369790341', '109074857816744029470', '101709955837879025679', '118222512929985638168', '115502584942774284971', '111492199188028722222', '111803451496284973356', '102352120060183298905', '111862324534985995584', '102471833540021278727', '116169862173728406534', '109549749746353031555', '117808925288865527025', '110600546748211156466', '105571367382401829756', '111297688846219234682', '106111195718302652758', '107970019180630435486', '114051322401103919567', '118435660774054677482', '108551108122376805989', '112131052301095546592', '107650451991930674897', '111204231597899286927', '111880539351297758103', '102991700177087923792', '103814318968872067095', '109742804342446573548', '104770776614693816879', '100621204114976031079', '113158814439512755352', '109773123295959512976', '105720374917117266351', '109773864099107008704', '110275700940996733061', '104392842026507204042', '111071516924332005124', '113982016947771544863', '109970338579215706051', '108202274299391625681', '112829764821993700345', '113804415261320525147', '112599748506977857728', '109734652639820618180', '101396087935203987162', '105246828264278441318', '110086262320007068364', '112226444837742109695', '113882113745075873153', '108497822730801871556', '110970478049227720359', '107423800169282621610', '105026434862126918856', '115438915076156178487', '110511685769077130162', '107786777834250014923', '103486150650858067282', '113211954743892121925', '106658263435760868950', '115212051037621986145', '115586898390417250687', '104637611526356357120', '100989405473280437703', '117692603688082448409', '111355521189998129753', '117143431026798289437', '110318982509514011806', '117719821968389525268', '114480451015846480694', '114634469290344215480', '109087219541067593342', '104266135600915178310', '112938065332180786366', '107772744220163920272', '110534982800542813261', '107800601648398385670', '104935478024576728989', '113687916808174552540', '101508531050560383557', '118227548810368513262', '102079900396893024840', '113143203855389025652', '102520569241965041156', '111976189447364118963', '108483700324316970657', '115192378231934758824', '105540241924141497089', '117078683766767369032', '101791177624236997185', '110622346521307288527', '108527329601014444443', '102219475968800204884', '106752439105747082487', '111557988109638065224', '111452466818840374931', '116540317535797197534', '102377882249382281108', '112314395542822752573', '113018487908388903194', '113409086302056667844', '115583343987670698513', '102156224561092001320', '108873304153780597752', '105663154402166276187', '112466252788633155794', '108881682496457039309', '102301614513829772817', '105072305864951447999', '106747990444555145217', '103846222472267112072', '110972643255774764231', '104392551078829652132', '106075926887576280408', '100733334063966339322', '115449277740727840529', '107902791674095682080', '103674677798255572952', '103847352689828733042', '104390150369482509270', '109357173702102949587', '115128808368924712465', '104384618198413714249', '117624867943351457090', '101082092468629957675', '108802691645484177516', '117362177282595168386', '107066031592122540810', '108492526126263806887', '108105670269190420138', '115105647022907007398', '111127765976287525565', '107826898160241010115', '101012074427509537656', '106047339735194827738', '100961288997176421259', '108809238871290369247', '110153147950721133821', '103046205364039460215', '106289562822644692555', '111696416275860222120', '111530414219710845688', '110310188663069469717', '100854202666064752024', '117443217206442118345', '104753156470151028358', '104774757304611870620', '117300339930600767280', '114132152877855597810', '105313187162422560130', '106157521915631300533', '106467956464026331029', '102761503773645968900', '104205304666071891811', '100746567420084440882', '100969632254286108824', '110876769838873316958', '111065108889012087599', '107370613759841832903', '108359434857750473549', '109106843297496158611', '102779421660447432075', '117345174540134167439', '101261243957067319422', '110351801655685107906', '108721466183079531495', '109460286987969520237', '115053975672650597157', '113343289732618728322', '109524702084450613375', '107004843925454095805', '110217867677589593536', '117013460261867390469', '102814914876684133938', '115909960452934625712', '105119518970961257638', '113440880897931183734', '106952702971234308514', '109892778117736265351', '112960723772418803264', '112726038360301567381', '101962829696981365403', '116279517579102446739', '118060542644788469413', '108439032486286528947', '112647753930092928844', '100771671272095499353', '109959354295627734270', '112837412700139095342', '103374497188264364599', '115834709756311067894', '114819575639630478819', '100879115281181648565', '118234987237484711962', '105386242248635638997', '107713758011103425235', '102715042925211875133', '104485759965014141563', '104376123433741873548', '106912596786226524817', '114218286823031873800', '116755662228900061089', '108776869004587763299', '102528718122061029071', '101096322838605097368', '102885931406196510193', '112540993775194208638', '107648744590757302255', '105552751194150069971', '108901599657368504920', '100179059265527529771', '107170797938865105803', '117200274133492421259', '108184823388212202257', '104975154049785009296', '112731084750684256015', '113102862520765968586', '109323071486321851462', '111076127406109584342', '116166660014087779586', '115407184179295920691', '117386232350873428301', '117997508248143467215', '112737356589974073749', '108093775538079548425', '103399149369474669101', '106160120121859644663', '104619747503393735851', '118191909035818071614', '113751283404152316115', '116059998563577101552', '112558842849268568366', '116119893029262153595', '108093196978439295882', '109556244641607065276', '105467410031842833476', '112872927563871212990', '113184091727451211493', '106201101304655420135', '104845196021283889824', '102280187460284438983', '109022523720071680484', '114046998698228319586', '100715328241636136414', '118275754648266054105', '100811733418406054662', '110917923227885600407', '105106962406858998302', '100291485699176411017', '115740425396974668440', '104119324947337436102', '108866766699357318662', '103147347309732225253', '108470782772821648496', '113027287369712034675', '114823329938030546555', '111026850364884949433', '106170102981460245504', '101435445820764233826', '103667678270324179713', '102768114339985212844', '117513232055994920961', '103892513613850678007', '113141491911286106535', '114313615710604492651', '113528409112748871843', '101360588077358765523', '104019628676287434335', '101670592154326222488', '103497375962504727564', '104405539079062799451', '114424163811716070551', '106909119051058200287', '107395795129791787754', '105857189858227582814', '112108146349792378878', '117919852642990147224', '102283706963707611751', '113730287097639021097', '116331515612347682749', '114782716597062478815', '109308524770948540943', '114512262688030479795', '103243278114930872332', '107757660648006087128', '117889449076077304562', '114632854492678778509', '116625409175127405276', '107387730934206332729', '106869328657379778203', '112288037970592739511', '113339552992922631802', '117057760261772024576', '114536133164105123829', '104885672108365535825', '102817283354809142195', '100081688755411201393', '102674258087271827658', '101155443773705571285', '104527974589315823035', '103826376633698210026', '115059793966709655633', '112652419137339945915', '105584766690422580666', '108542028742775408207', '112133321375398608722', '117440800608070428322', '100936611936552412031', '110924681541917174512', '111292852688797062644', '111831478459732211063', '100013503239814724841', '115184265772147964766', '102227359845636175866', '105173978068939050475', '117367546931116283373', '100258330325630692559', '109557537388130641091', '107742567767125793693', '103977761514480488970', '102734773672764406407', '107762505509366198035', '109134542761003763484', '116678377243407600427', '109031486518632696635', '116184062049364511550', '103855721758679327070', '110258598415939907971', '114585365564249361309', '107112192270189573201', '110492963926129353210', '108316366145145424476', '106287665062204946341', '116485529671477438936', '100838318974719130475', '107234596907841739108', '100744739062759166603', '115638011957803848019', '101765089097091765365', '111118627288812226106', '110054750107833929512', '117764656317189329352', '103541694080221120019', '105163907830710862802', '113418554594512897845', '109879692651335695102', '102958145054444947691', '116594199576805510790', '100160535056943446339', '110945896776944314708', '113049680760030015485', '103352082835290498060', '100270750934700745963', '102652798699165063453', '102946542014341156581', '104046305091198506778', '106570162071079714733', '116341747502466446052', '113967216489593095540', '101587918377167385153', '109552164022869062712', '108052248933159783390', '103831709792973069282', '117439726142720584478', '113116318008017777871', '105462643044575195307', '103519655975029093996', '107259876553284197105', '103761326311610249621', '111296156124188875659', '104768621699284314998', '106528242942323266098', '110036682383342142442', '108441236350188572460', '115505611402423023943', '103618543375127073102', '115217128127776043681', '102865263115020893218', '110874643485851794601', '116475141635496647275', '103079526275359000556', '112847428408357711502', '109137415564496180560', '118274547296450170219', '112708194574821912619', '114155637696278017296', '108663831491715199681', '106955057806718560042', '105216491640488683417', '111028035383789880812', '117944255792788034101', '111085837404839082673', '114963335823650717178', '116075808135192798838', '104162197579357666121', '113735310430199015092', '109964835523558331931', '111299245834134954469', '100623276740673202144', '108494946397743992507', '107308460013033893888', '110574646879337303115', '113172936350486247623', '112236344213897425331', '100095245926948995335', '102757348190282389547', '117415299178197399511', '108267505811149941920', '115655205216183932495', '102349305007676725479', '112651712578445880355', '110378953230340021029', '112567117703230042072', '112553374822968576883', '101603746022982792137', '118351515323229708433', '105231704254423883185', '108260365402701122850', '111674748486766258557', '101371617406438805612', '103996269149735494674', '105779560824580764120', '111538009015644508967', '104703109675446407948', '108985069770923500411', '104265422458271861932', '103871883270165000246', '114674910956234036253', '101517640605056528235', '108965164133793342297', '109444531289011109804', '118319396904174942748', '105944275755789769334', '115560798821543443948', '106329623209697686110', '109330684746468207713', '113190138529310509230', '111937447827665620879', '109592634059397506775', '106664732340731583406', '101006738498641076759', '118407019604194144874', '103573861712533193449', '102970080723469591890', '105875140491203787369', '108151744331661850034', '107171241573314616937', '107347120062830095924', '101059416020608978287', '113209788861124695757', '116351092074076481313', '106453174920448111637', '114972221948028006870', '116011252490222413570', '103762604622232918121', '116204437472476177397', '107606703558161507946', '111232346000552816062', '107331626870497071558', '101248132798651706167', '104016949609489688294', '109619063322910077914', '105734935003600818916', '106142599927679917738', '116214152295449083654', '113899511232506817885', '116565270544040241255', '102837097678487480685', '118060719740697519041', '100377493270775536948', '105988730002336504786', '115314902915025797112', '113317784690313904082', '104015870160096329227', '115397975174915356748', '112710501221399450850', '109638677974287539994', '108629717769018996477', '108212930079570466500', '101554358085977409453', '116369071500456395369', '107703405132139524311', '116975065059892451854', '108906879763321014176', '109293770542704261224', '100720381549183482357', '107814003053721091970', '111091089527727420853', '116119420122834839490', '100741886359727995612', '101111725148957537937', '112126177775760866820', '110116147199435061080', '111720952354186227548', '107951823638685687042', '105064375035313533162', '105950725902891401635', '104261567553968048744', '102266721632816665047', '107733269574737813168', '106559535755568285284', '108945615972564140630', '116123554028678966465', '104522833443181754677', '103047027122693182933', '112307283830146683885', '116880405123751600396', '105788536249289182288', '114437821607569957251', '115838073957413876487', '116247667398036716276', '116043947632177598920', '116616473522216111363', '107732802446301744236', '101963597801596120711', '118391323892426354857', '116910304844117268718', '106470118056595969550', '112162067187975810298', '104312266146854596690', '105786329165387175660', '118381409182314783050', '102186402010640689794', '115956363612512643809', '102560802882566983335', '115220228182866909424', '116398684787400584523', '116790754553761013184', '100771778865891544223', '108397492225891313226', '103300363750121441954', '107953073710704668222', '109843577202599564445', '104500985015816287598', '112957708071337353347', '104483335833597426084', '115481103967401468109', '100932195479763784248', '101610654641108280060', '114729740472671073461', '112661262066626464523', '105228323457033543279', '107711637734662046744', '103520907987098229443', '100255414512209205250', '102648429021828386272', '113795961594472514455', '103422959879607680904', '110095126245882149972', '115445642427433788455', '108421221875206061761', '105209854925481789028', '115998365782148743728', '114127684466692817416', '111735436574449420319', '106959964891946926594', '116927112288249522316', '109810528911761009420', '118088897327749634204', '101718460568069080946', '104239170611216583381', '102933438871860647050', '105267656376269695918', '111431163781108422921', '109412257237874861202', '113664406921737357882', '112435942355572461782', '116924376950649155795', '118418436905562612953', '114338270254521043906', '113609359086719569624', '112466699453244400190', '101671254344748572682', '109382830028354840675', '107792665646397377888', '111754036279251010992', '107776381757881810293', '104004113006827265832', '111485501208531423117', '114314662902167329716', '100899721373067396143', '105551989431666449555', '106957616962047221060', '102616149286682191474', '104206303867855369291', '106359487807208915036', '107314535279818632177', '112999005004480372636', '108202989932786461870', '115794443293916888837', '108382975244372026384', '106661386135469061222', '105946704536127863017', '115080215652229659698', '100492888463256600334', '111577466514119212961', '107743243961862129539', '101631268762395039180', '106684105564729483790', '110159306642698690348', '106756633331481645467', '113333970555421072314', '101613323632895104222', '111396627909813082628', '110041523199056192526', '117105764275907696041', '116256894601669480810', '104505181812520851969', '103400759605078401719', '108351379315576829114', '102438587857692203407', '103752789033829922442', '114092052797730247075', '103216887847401478447', '111304467646929665855', '101798506124778677222', '110756271032918969687', '102511868205585278752', '111637781336462698926', '111988561807913777237', '107432398539341365940', '116511752882326311047', '107117483540235115863', '108234504729950216883', '117888539284010547361', '111792749577709496730', '111655402802831199860', '116392910200064095754', '116047064092724050557', '107063521484195491203', '118010492606736098164', '110388230780588093032', '103984263629438381785', '117518723197409899160', '112617127041903537004', '115895054477394715961', '112063946124358686266', '115665385992644522818', '107837787570701999521', '107968525907303243288', '114967530494856854235', '112416945907493718478', '115459243651688775505', '100487969343352743165', '109776541085987843977', '114547779905550869913', '113107253403679023320', '105852782594022510198', '100001460601553769984', '118216056303749770000', '112841382149223378417', '107013418740229269209', '114354878556558710088', '102143577107646910352', '104992798176478601465', '113146596813770102711', '117211188266299551948', '116947923643606285942', '104639356062913210803', '116419531887099225758', '105597865359019730782', '107494834634231938072', '115978949584209885559', '112459587220771232952', '105471657677885211463', '117609074387781485841', '108408701426332023039', '116157414053356185540', '114085493413055031309', '117531833583575296620', '109198785850094013672', '111291284658065889519', '106089366725380818197', '100313918372780761690', '112821156866464968100', '107505945626886118152', '113327741559079110283', '100817766199767691735', '115631392683812246403', '115431621547492397389', '108264998570838621572', '111736038656414351152', '115567596796651842332', '105354335974535112059', '107894914670080014116', '100699206386042036776', '103334982537818934471', '116947906726568301788', '108159920487426481642', '110584481927562150689', '102928259944836419922', '110297516354913792182', '108396995968821132401', '111204757488124368395', '104655632682885234674', '106739909617776073337', '104678191247579814431', '106020745084647886919', '111700516584018069412', '111098246349175435754', '107248051867606623205', '109986380845162801956', '106717946845088683921', '102920063140431683002', '112145951608161981842', '111062345847981251872', '107119940474246316259', '117697399358826098478', '100284485939530393059', '116219534929662479848', '109821835832137035332', '109535142033825344089', '117429320390907645600', '115851550445020159565', '118058794383720702307', '114744510189908480227', '103011662826175289775', '117350989957881101918', '109077344077059145936', '100002480836167822627', '109970694243142634643', '110647574859662552061', '117994793060697905112', '114288572990229558524', '113669639330555286996', '101802628560870737830', '101732201128912742632', '108924136210249299218', '117261351415381068330', '100209496338129656740', '114326903094745477264', '112234710508263821183', '115182601594934760469', '117211092043045415977', '115204805503581947511', '109067944403004677551', '118163822095608736409', '108470801637099721956', '110353325283488676308', '107294388876501183693', '115611370841296478883', '117247110032950657206', '102489475272134988888', '107404242080797040590', '106746796711269457249', '112621763329756975729', '101382638684901775055', '107542632252660344559', '115236630117797905416', '109746540495919889829', '114048628995185346979', '111302966137190750480', '103503784030163121732', '108182285273662041292', '108810107917992542483', '104671636596627928628', '105255740380850267791', '102322382186844241583', '103561651335947774764', '118151364150619799530', '117408889341288914294', '115557429069266247936', '113884569404079501384', '100892612779426154375', '105182282046745007103', '103657280492137983446', '103216449684460779645', '117162241494948098425', '102787803649662700214', '108726627059993192865', '111761749676250705531', '114555959398443655098', '102908183831825198819', '113987783198222246178', '107970222123399164711', '109220060006128553211', '116420016730730378893', '103878892760050193072', '102233770004174020180', '115150834179663036977', '100150262516656318671', '100918751310613131472', '111438593416284668742', '109243044876542467841', '104376626976827590822', '106512394490409548810', '110999643891411006365', '100717260460197803862', '113607881597695397209', '116064700533628088794', '109533441517984298838', '117896552660822449164', '109328612626879131592', '110732894040996100327', '110831814681416186004', '112930364932290387951', '113626519008671921974', '101722794413056181717', '118048139271163842678', '114423804406467895352', '106637859152656219769', '111499908439497508351', '103418470943478648270', '113587097779969233449', '102858072197145459524', '115836923922245203582', '105892869389940058316', '110394599356932147330', '103563594037587142083', '107610802552780953781', '104382044723182769187', '105737646394343924193', '108983901461478631548', '100688415300015056554', '103875258484706784219', '117427965408516165606', '114154062944146796931', '103735385308870498896', '102484815895297039652', '104807117922089582088', '117331260710731985743', '107950851093654625603', '101006001190131292549', '107054441882391722914', '117205931133892412767', '117164379876522742757', '111366663698896145964', '115115161887111700191', '108904364100929057342', '115490198572387699066', '107710313261685310182', '116643304160474160340', '102520007126942234329', '116522482082039015216', '104891536829161719797', '108750679568139936282', '101943035898572565380', '105197884542851644254', '107538227221346415563', '115011646412956679108', '101246387263333071454', '104182876112695525975', '116563097005119909867', '106775609116257959283', '105329929314379043455', '117580334862683341512', '101327891608545060692', '107590607834908463472', '103173778577042156494', '114394128653474707020', '106474465852302015559', '117058794763073546749', '114752230106780929894', '113876914367537091066', '114662554714189782783', '106609458137279105208', '107092957866511854890', '100586461319763000734', '113501423705211783319', '107733223155249215242', '104484219049883711215', '116529815860867544557', '100564997856777850833', '115614791007645952267', '113417663123715283363', '115925885941625757982', '108586778317771300452', '101494695494209004052', '101546147081486036828', '104541959256591361052', '107612965650983920664', '116651741222993143554', '115032003955557981273', '103183570053193175186', '107011265359512082824', '117942605302461709656', '106539507407822116200', '118424601051534304110', '113265173921862692587', '116064889536351872000', '101949100051085600234', '107122385373308170048', '110670388561465947882', '104548627795526843775', '117670223716788465006', '113423232520350256875', '104670590988236364470', '117173444820116260805', '117259934788907243749', '118185308410727568187', '108506119827765810454', '105354532715798223299', '100994114474811451452', '106821603602178334924', '116974033728914311325', '114853458007065354930', '107561275736053026558', '100774699436094132400', '103245952838925212735', '107672129527493747015', '105362990780240393762', '109854304647212696025', '114801877818306839095', '102554407414282880001', '105100415886680776080', '114231305708772868829', '112996720934757372518', '115708904388040585813', '107682748671253717847', '117640248138077345065', '118043264140450175721', '104546878095894843869', '114786794106113206036', '107289961585411779306', '113450963153809629492'}

Louvain Communities of EgoNet 101626577406833098387
Community 1: {'109937871375351533728', '105303885389185662336', '111097652703029998131', '102664673357233829000', '104786643585334861389', '102584411590523178276', '113676724140312667272', '113388389171178254246', '109232992517968735824', '117570236889242256660', '107625733670511152905', '101365527746070426875', '114917794867576830866', '105691729617188160535', '101391281097346539710', '101161487788394947686', '102516642867599611430', '101556223293287836049', '108631292347138271966', '117628167393778000025', '117945919108078697628', '110954437358704206593', '107718413955878443270', '116816128091381983401', '100997036439271686527', '116503673657071757203', '103710176106425816152', '116980795250220478086', '106145469678511903598', '108148031160868583699', '115877100247789175365', '103238460033023095344', '110320489765054494412', '104210284591560318168', '115631210277871241840', '104327566964479541867', '113203410338220503994', '105110056315907108114', '116498936785168871237', '108387298144787902033', '104384132884063472627', '100305949954154067156', '117629618264602489225', '103729992273575206534', '114735074397861789937', '118057951880954404502', '117347227067614244707', '110174857102676502827', '110205698759928629897', '114888800688219423549', '114863368147621987138', '113716058823470380359', '110904474423632855394', '110874793512578864685', '100675937989132484697', '118104982054097728858', '106073502505833617615', '114961441691634209230', '107037649543687039893', '111079829980705261476', '112373098634319462405', '117829912572918352111', '115883748801594816833', '111472410188317881475', '117134630535811401163', '103259967209132102202', '115772754810716985882', '105010776582224682287', '108400482007488784709', '116424897893148688437', '117766655462016947358', '108596856147471647943', '110914730236012327405', '118238843023744047489', '112465845220843200645', '106224809628162119128', '113749470445011510754', '103149981726006758139', '115444981501188966122', '112263011542748815172', '118001592874536025031', '108605715392358263943', '108598077692133439544', '108679156042252510150', '107043786861135786297', '117649852234662237457', '114590625421973740761', '115973713581545188013', '108836632282495489337', '105487512957011250721', '114438420436184558142', '101020398404454255278', '103281874124219421576', '108261488099655035262', '101303101272501376461', '108778020344085191232', '116144207269857394008', '104517283888075438708', '111564342954842343446', '116448432393406494049', '100483159230702157472', '104954094651982683271', '107229631454914944984', '114242815141424428932', '104096862453741322039', '107765828806762278719', '111816306413539681297', '104608688746346475166', '106345160451129614118', '106161657996210073218', '105212800818753773495', '118083044235891668202', '116292962086699763683', '115753067401325872899', '103234874289220845820', '109361238576529641434', '101845439468673142784', '116296548742103792981', '107174035998898664845', '115252635154799906061', '115835045098084227825', '110922343078532723485', '118071563711301965347', '111011535503239295290', '117650921674471766076', '113906855786676930682', '104440803545192061674', '118101582729865531137', '105448939635876981747', '102656961735074050535', '105209252675535934604', '113801236315350503728', '110426454677460523115', '102497753834519275145', '117441295181263079918', '105916139927593278572', '108384514701581688967', '100262595546646927505', '100546152683684952264', '116693713957168030135', '108890632392785841598', '115032602063544473294', '117535721678479140819', '114474252347218597235', '116046131107486389598', '110170853489673957168', '102025840065849549470', '116202254053116110184', '112190527341799252288', '117063357728899318461', '111315731922911012356', '102119242020783170553', '112154855088734907006', '117202623485665431394', '104195411437395270367', '104553498943035039915', '104367673872953746164', '113413631123566181546', '116533639434584510955', '115586601263575113001', '108716416588282864810', '105360886504399318117', '113864557852930301381', '105360601739150295225', '108324852458814017913', '112883519370373782140', '108922968948593890597', '108458224027000515910', '116230801172614738343', '101241115574190453004', '113868724708557157025', '100566930615301821487', '101618622657282476394', '118191058320818583394', '109572392382252299715', '112167619931817269636', '105065860480405235085', '113483159575688970856', '101090464837155324575', '102207070313603828427', '110357528146473267520', '111266260620289414133', '102338172844969643449', '113622376705481070771', '114690296983434375323', '110244042813288515135', '108065379991442621783', '105051095469014427970', '109488066281456567320', '103217195313448781436', '106786396964718872135', '113970448650250761359', '107810847939135645838', '111131343895522406643', '107602141496407998698', '113425983871427484774', '112135627941631885713', '115662486604821487458', '111349197047232327528', '106228584043531639037', '105631706237461916067', '102222084978458709927', '100163594096411699235', '117248315063482968290', '113050370088002711577', '102867675431468978382', '100000772955143706751', '108295381167286729107', '111969675280657949319', '103617443261375624134', '104781901256357942079', '110754809759532895023', '118264287542702286881', '104120766869427651690', '112574026688941990937', '104703482165510786243', '108737772845276198949', '111123531675577823392', '107835998090417609007', '112133321375398608722', '104683420430935303161', '106695181236161584825', '109449502631822682473', '110165347477692441456', '115946267971324758497', '113875802243710708779', '115885390428461550075', '106261023082002714872', '111373705905047756114', '111058949532759647909', '111307057376303183757', '100205133240537822783', '108336879026437653380', '116241319812013275860', '103808459751547013074', '114000251189659870197', '114631850680035830013', '104839405624039000001', '102276994970519682402', '111998338940092190271', '102933831926999456468', '116755139777604884366', '115109273148428856919', '111745113427433317501', '115836375849837391638', '117283174365630308265', '113744709124077767385', '117343149105379821488', '109669489198361259470', '115017188374689068228', '117299735881467557950', '111996313883192957743', '111304554034602536191', '109839824413681593574', '107618759618917914793', '108894901907715020153', '103649601156373118678', '116650270835845726633', '101696122808414858137', '105107384950329360845', '110243353264678083016', '111932300833869011845', '110647107907810818894', '116440942480280633315', '101632625179196864356', '110814734685833435522', '102437056957445537375', '116222440463699032614', '114816393975245565879', '118110499102367641378', '117109455577949654306', '103232569713157928293', '113497607392063303695', '100902857295266486252', '103714814352576591778', '106769456264539189274', '112265453406416429145', '115986231570313123707', '106759928530137277066', '100429144901817061829', '102958885594778683836', '115211394853637622560', '101080937836827454050', '108365517181587106756', '100255379422268256221', '110407777664620139726', '117452840569638270242', '107937273108737007052', '101833052312208599101', '114622754747804824114', '107655425051835546837', '109349959002779881384', '111113337545675423372', '113270276203698452565', '103410475213206098128', '108274066442038820185', '105981676627182924725', '112039297753400681640', '106898303500030174859', '117802831896638233341', '111814754931875500018', '106346889276241064410', '107294465895827838777', '106269381195811573244', '108617051166523263219', '104489559826523469762', '111804432922796651204', '115657818664055964573', '115617667029983550828', '100382502425185475382', '107338298620948241188', '103099400695804997144', '107117956650189130386', '118280455087230976482', '117903799006890870191', '105817763161586793464', '113469702725654003195', '104307046957958717344', '110835757750485679006', '100840674425586457974', '101738836237515132893', '101961537456676830624', '111271022648828756409', '112970980012435940193', '117571030429786149736', '117686791010280845823', '105247701867201669712', '117066981975622043933', '103475991020114516832', '100876303780899864442', '105998911565909100866', '100576009470226039522', '112125625905804242916', '108485371724879192144', '110889408651933273096', '104204281391795998669', '114843672887328457046', '113349782571770492020', '115965116435918871384', '113221928802401012692', '110481290907082106081', '112896919987471213781', '113339160558415801244', '111708439007738547099', '105093306761527587301', '109008076045382251768', '107170719162385014188', '118254993345625377660', '112597949791492786771', '105771443653670216737', '113575182696016289978', '101344736193669473634', '113239121004535740562', '102286404941590695758', '100216232905290731125', '115875306623398373871', '104729152720399503820', '115647026292417015088', '111197963319879706460', '104094910425288734483', '103773365198122380403', '110232953174380346191', '111535729080602813494', '105288092546047259909', '102080619541485040092', '109761659982953596208', '109485915141377571340', '106768625381307782670', '100390111023341951431', '107482504460155762256', '112578485549024948842', '113551705762789456371', '117810762658092748334', '116372453888968920734', '107969174818994812898', '109341530333190876734', '103043957329931163250', '116638515419531786825', '108172787146397526761', '108928179577219741390', '111285994860243640452', '115350185899483626867', '112216421543072656709', '104724098849036019136', '113029824734549605300', '116930008835397318678', '115223094186537734509', '102844091897140698951', '105976191766074404677', '116810790308898632694', '115135639231677138221', '105987792395465966830', '104852618978741783045', '101083763367841818362', '104630846394084969766', '117804813579530934457', '109727672484215370528', '111629072637171869453', '117170119888814898919', '108284410156428722582', '114553377482285001241', '108417755524751475385', '113768675919962055221', '106648749063247822005', '112726412224552205610', '114979733565079457374', '105822688186016123722', '112922373559516660837', '111431163781108422921', '117865636314596727319', '103884696190788352322', '117808856792911847818', '104601511846967401036', '111967829475994986811', '113945158166040832137', '100797441715800528612', '101194923185772576400', '101125333665407115832', '114824780965740949647', '117006204669448042281', '102863213160589296596', '117329183477866448939', '114634867359725822014', '116691446642999852926', '115665750785855593951', '108930330916978510939', '115012224961044669142', '118425492486932576941', '114433068639876567319', '110578423755926627611', '110609608343745718073', '118193763522811481700', '106173654340380035920', '109361091415205934794', '106076218692284005223', '108888613917194339163', '115231940622377030426', '109709900240523274422', '108853957313630398807', '100609474521487274019', '100238746026920057941', '117453480025743569701', '113472601689595052712', '118247641373061037233', '101502198620003997845', '103726235284903068252', '118029764750173504472', '107474252592127097512', '111817431405174051134', '111936536088629203294', '104040006431957499147', '114740697244234995232', '116209386927422884868', '115386662137386889939', '107621421481501055809', '101459430798881096556', '106336886510663127368', '112039985732469056380', '117139526704207434934', '112705176137338425927', '100629001564848798589', '104192099372982491378', '113564728642274554367', '110393782784359507365', '105479978792567105658', '100038567648880602892', '100949049107102931704', '108817515291499537774', '116183052555423440686', '101079541705099582720', '108141487354948902395', '102681524183005471630', '102174364048166411282', '105292372335520297420', '102874219212845953707', '104059226299370778081', '109150427205253557906', '101744616880415927118', '103453206055647001440', '104152519877516722537', '109432665441779765819', '104327550157684287560', '117299054950663802528', '106094117640863938375', '116791958193507569874', '105862574314479953172', '114486529896781353919', '102467684150504816942', '117751864620444339449', '112636423242197777506', '103403824431405645263', '109909064852262587287', '102467126432132982843', '103885988769461587976', '111170099011733494899', '107291618721521207171', '110152110655380162522', '101765416973555767821', '118395372821886275757', '113050177380242998406', '113749596513961981675', '111601733221961397250', '100346286001336072663', '106836027604270584181', '102310231113853135602', '116573634467780531347', '105442373415337158364', '117172789684616305209', '116563635597846634084', '104224085394442018402', '102319845019220568338', '115347549485911941147', '104762489831260537028', '108894865122785231470', '116735023496255465709', '117541585094225997898', '114388722089081529967', '114986879225273635553', '117363220521348643920', '101706255824083798681', '112333944070832643201', '109979060948707083710', '107454041582730592522', '117013635426424522837', '100843575451668502132', '117615879721243413958', '106658487994152801806', '103137349987163761570', '105196384915782916836', '104448948219087403805', '113092004264605073176', '109045366876404424354', '101387451632972306038', '105163607871076892526', '108159573580915433891', '100858490211669592992', '111009654034423034559', '103204035441075006184', '102972633412637918662', '111526611393748188248', '116377880741093131615', '104604968304814988665', '117360103600409535739', '101895066734944191692', '102331548788637072854', '102029124671903081365', '109839246310030381845', '114210564037440172406', '100948164131944782568', '103311768943033199199', '103765030137450180190', '104377821524346930092', '117350544879346914182', '115235121210071533187', '112401287389937540523', '118137577895575940497', '105947063994736596850', '110068244312155682539', '106136185501956812585', '107961127480798375201', '103288783873516757515', '110006627349313108140', '100933246766558561608', '103986531971458028609', '107200539380341057439', '112812285840243394802', '101989171644896834606', '117233405959022958771', '104434993999034671224', '114215018864711870311', '101146518778117872609', '103105844877240785879', '118276409840495259555', '109350462562827266060', '104010226630442675198', '115896018769078922372', '103570370675353253089', '114142338899469124086', '104339306147300673573', '104299502666888044018', '118097408678563323661', '102192170942011604615', '117342478520229907892', '111621214585326658109', '116407796592442195543', '109678105701908121998', '111598152109669719269', '116802936405639456837', '100108015404044692029', '118301234913751170945', '113124790217153158358', '115124058745655963182', '104833353729476682346', '101029769729413203238', '105535858989212262069', '103603972678787562896', '113559255179536852456', '104132596782330234225', '114874903731711729301', '112228057383913980798', '109227517969023488771', '111215591881322615458', '107515732602661699270', '108742643180225847204', '108449642532581973231', '115719647889766949829', '116792953962445337353', '103061751286930964606', '109982023118687397307', '101320140057312633440', '100131720246450322354', '108913861400058319062', '115182224803659492230', '108357120612035973941', '115152620779392179501', '102502383230554912626', '109663422162027934892', '107153862707969259645', '117885323216314516693', '103901292787745541123', '102704203428412111508', '117258434550801821510', '117736506666284727001', '109831115457499838319', '100085008180890266323', '111449968859266733786', '104279482627136382742', '115778472247594937117', '110045419828426458606', '111785742785836544082', '106315368025180374563', '100644752379382846280', '109139639454066616071', '114128780058499383463', '114646697603995322477', '103959035591812382052', '100267205675596497045', '113618156489391573757', '107499148616904747030', '117995453884778397777', '101141659732187912558', '115104790963351298656', '102475769501741189805', '101697200181515740385', '116327879897387660137', '107735045908468231737', '111844207892540067378', '105879857479784539538', '115032751340989876448', '111954449427652029552', '108817873450561679978', '115320260762633702950', '117870805029809655286', '103130371613241631309', '100597214208402518875', '102342607000234078923', '114055975301837030490', '117942296276744711570', '108436181764840238049', '101685339977144271708', '100379374433044774797', '102492240008005301473', '111022545556058349243', '110635682182898521204', '102022876706453290480', '101649673244383912044', '110213257974797510242', '116272495557234710231', '107979651021469607748', '108741338091905022426', '116566243531553495894', '117662409251481878104', '105194350673966716144', '113337404634516853848', '112376852855546632568', '116549352790571769356', '111165740661718158086', '105535553214800234996', '115933328252717350053', '105901258272269401150', '102095686098414388681', '116455136667523112865', '109654956590332274689', '100404352969213892988', '104766818928721071967', '116931672783767066655', '110875596816963645136', '115638719760028290319', '101440576297010128492', '102757743012861353656', '109502062797751080516', '111847589579053148731', '106655673108390131524', '117371561483326792093', '103813875069667299414', '113551191644318687552', '118107550605447134417', '103326887561366119674', '112101456768552820382', '108091363211020343750', '117750182831168616397', '113346187631570677479', '108270124901150948229', '110784686377960580504', '106885694610758162435', '107439623184196122529', '101286372035571769246'}
Community 2: {'113247206900697518499', '103142093683558932038', '106905517280002014996', '102952924447212445085', '102855346468155011104', '111164095920889813531', '101987644301795941713', '108277911144034417844', '100952427757854009018', '116086895503030458759', '101900299178799457829', '104417604089345244854', '113364856660738963998', '102991700177087923792', '118195920712839083844', '104500032969792782616', '102661064435086792298', '102521580600633699628', '111314119508183029094', '117271278781061038696', '114268541616099425298', '105417936920319881728', '113934388760755236027', '115263213809531051013', '100258933461856349896', '113882113745075873153', '116721552257267889729', '110997020103800902104', '105956684668895021623', '111666959095947698908', '104061697717408696407', '116978986474980078908', '106792630639449031994', '100983875600176451601', '100864276574169734916', '115874768651078426980', '109323959872439605147', '107686773089345528616', '118047979194455321649', '101660858886010338254', '107871049657528656845', '118207880179234484610', '114703946250912886577', '112191332225182669615', '106904125254062417510', '103697663096438568352', '110793427307795088740', '106942998701672636108', '109469606162814678510', '114756106819626333648', '110756904798885659810', '102316033607048146462', '107911775765149085622', '113687916808174552540', '109393486415188433944', '114921220257014545253', '106668849195237466383', '111955210448682003905', '104846472501579099769', '106980589621510002419', '105540241924141497089', '103400697256628189581', '112621733300379823049', '111935860955005881764', '110946494438069043544', '102898672602346817738', '104866752152608645426', '109897501603474656405', '109055509171495088287', '118208800996304528091', '106935269738929891479', '114489276586542400632', '103948552635915921277', '117162189667042877024', '106401812082851692276', '103533326117556337218', '101923900562110335846', '116789342035966927439', '115213903759378691934', '107915791090549293582', '113751353481962008916', '104948200179821525144', '105296073309971958295', '100350600415352219909', '110709408825070411070', '104346763979228774298', '113564966904017430537', '110515986240258085051', '114551566041977133437', '113284787225540728296', '106732208186263952829', '110933278795835298751', '106182917486452443234', '116269625715795017464', '101114929206013446129', '117208352031643264455', '103131172324104851413', '101628886457416740532', '104434745107205805198', '115000418990117194342', '112615549948537825416', '116872576248355504859', '111902435909328987615', '102615863344410467759', '106074443542058296692', '100854202666064752024', '107552481929780975327', '104509320966445128014', '108102489999609775609', '104022836380935211422', '101479254309670839649', '105508666909703535708', '117841284165024027243', '105570650934112321705', '103297136718260742288', '110209841939300413706', '112597557223321833686', '107995752740537571310', '107370420028985054014', '104128454477572697430', '107125656733807816445', '110495506028520925947', '104455936911400687535', '110281677888802306999', '116287579291323843803', '109645440275254788052', '108646498933695640988', '115855407597246903502', '103349181687339452513', '110679427576145051074', '101506609116358593282', '102887075465200612538', '113612142759476883204', '107572661130012578410', '118359023992790949354', '111196081469533247237', '114817086630128748041', '107743229589123592762', '116753927647994281538', '114264840971856704804', '117433796584165795924', '109250927199271146500', '102421739738939755535', '108551811075711499995', '117012878637757010383', '108748564600771300777', '111131293891264007959', '115647520830242320863', '106498523901120219066', '112588375356373967934', '117026486131755767080', '112607093057333608109', '111128476711326598329', '116025562178689306420', '105459632168562444179', '113993338045127264249', '106819868808219486793', '105207689891479566260', '108022606493816069968', '108751342867466333780', '100898812337637373147', '104536695375522123939', '117553526993599221249', '113224091720610770752', '102362554531562879692', '104681088561386475310', '115716012754614229445', '104619747503393735851', '115514397255079403751', '105742323222592758571', '102956403909812385597', '107042274445132391899', '103651933187958485747', '116485844921527400388', '112894769830853927311', '115465247420840267126', '115106680289932322561', '111871004034101153316', '112477381832788364129', '108193961409933953916', '104832788213917501946', '117490570143111458277', '117587356132722080869', '115740425396974668440', '102661385996973513513', '102957598718694651117', '106477444502033738796', '111310128935820484218', '118135621795541953014', '110213110091120320926', '106581465535551887396', '114010472648108232072', '111273123276526928331', '117486149805594757279', '117625677240056052990', '114920699371798645297', '114165341824470062176', '115480212092198928416', '111169963967137030210', '100665396181096198942', '101085402609998989981', '113781669780856026907', '100337661655101174391', '113236237379295293923', '106500980974633380846', '107140884077582692033', '105011419693284730043', '108338085297478031264', '106501935924564321700', '113084294543280106633', '103856854074520288621', '115931920113083685564', '117399199380530915936', '104390246098751387487', '101910968571923567098', '106819790952022277698', '111467014974214199699', '111490410961061968408', '103987226146014866817', '115137411381022005125', '114444401081404754241', '103033025486417630917', '109171940951775811050', '105782266618762056104', '116440720023848659115', '109103604877692809901', '111734941979762265995', '100301057678332378127', '104187485038349338729', '101562076353371698615', '103389452828130864950', '109245543320115402749', '115041571849513886288', '100147058611708432709', '107664965590485132536', '107726720204780364935', '108044554855018652985', '103064919306252177499', '102606997876447532086', '110187376806005895862', '103649716203675222489', '100313853263039390319', '116621902632266632475', '101559871572415719072', '117876452096235489488', '111204779949677857251', '112349618795556751991', '108094760132961329912', '104126812781499672289', '100498091085142703743', '110998825615804443232', '115951321888873045264', '108419525484192008613', '114406070252576899931', '104172047548864613128', '114650948569842705061', '104525741232007487777', '115065700352899485522', '100518419853963396365', '117593648821642604243', '108998981953582461859', '112694068013676385115', '109615110543347219811', '109487893663535632412', '110569673423509816572', '112650309196599566731', '101336441946387245415', '112704621062246695365', '111813031426807996756', '115404182941170857382', '112753288423331161398', '118278359112139155876', '101679642643164533447', '103661850840730438814', '107068394895026214362', '104088372686511349431', '118092382679685227042', '113524745665911089922', '108820308651192367439', '116109636097279275987', '112405355173704662385', '113116318008017777871', '114769271824547501327', '112255134753536560155', '100445909185635958869', '111714967314095173255', '100566094804601875547', '109681579786334083315', '117693415411676715849', '103618543375127073102', '102817757260790945103', '102932154784740683831', '112040818628315685286', '108803193903393914156', '101024396514741571950', '117752279336283753108', '115951522240088400974', '111048918866742956374', '110029071894789581211', '112165296533078407805', '111320769485877201121', '117139907586011263319', '115373164695229116514', '106189723444098348646', '103429767916333774260', '110264880729760280006', '100160522842752150591', '110950705448857757626', '102727280695522122522', '104331298751457066755', '100522587964493469236', '104147032621576433590', '108124943626198035215', '114734285070768836364', '107921734323666386290', '116716645934158426134', '110378953230340021029', '100920503706999249808', '111905601841710245594', '100640328252835583730', '108159551615224338529', '110809308822849680310', '104601966579636115281', '103765013042311928518', '108816675640848354480', '104625253762031715777', '104867195847530572607', '110036144090341371113', '104685594988557376435', '111538009015644508967', '117993751114584037254', '109554198066536556812', '107720360837357891870', '105213355437835940213', '105139201027215244053', '112160401912410742862', '117794694359586046799', '112320140479046300252', '101263025068591712595', '116949569041907354953', '105033897216895969004', '105265056771720551895', '109995262342451767357', '103637004042802406296', '113899204246116045710', '108897363724526154071', '106781608046257559318', '103664294837476933133', '106795589882860426532', '117368804125471617854', '112056268930098097280', '109351399938437494273', '102022194037984904264', '102857139781459175865', '105883099804789551412', '109307706477006686327', '111940208223237427346', '106515790546292038004', '106509577542823151830', '113705426060079260449', '118237390531858805193', '103905058829783851744', '100967589668296591654', '112710501221399450850', '109907447383307087458', '115793765515193253189', '104886704932176123534', '111175977326085962268', '105742541594687841448', '111285156314431541418', '109864682239604168320', '112722218389320823609', '107209819311147886807', '116433687519406947717', '106240456102354545523', '113402608391165594923', '101111725148957537937', '104363167893476170953', '113151584027783138363', '106647721865104829032', '107396592893823874509', '102969131573222898728', '103739504171332099265', '113435410489669754500', '102843899458304175167', '105206446591327315274', '104448915695902398895', '102813965087123586613', '105542927004024227632', '108908553033498644375', '108833017345750355976', '105971899842084137789', '109057663588146534852', '103524210353078153492', '109627232479210515312', '117922315526991281626', '110159618835102967568', '105018623660112418230', '109734221326849566494', '106450116614521192255', '101707266351443161955', '115583751237339080058', '102299342884585124292', '112251711508735202760', '109358419843592904169', '103300363750121441954', '114859681382458763964', '102171570226143152161', '118286018619987476056', '113067760031784364231', '110359037752662097266', '115917896566667929358', '103885042485658470702', '108000307302868291803', '111487545374003509241', '102472204830503422684', '109571990222111628056', '113157996690700522471', '100697864514049841173', '109127005790628085231', '101607164549546362845', '107054744026933176373', '103432632381362306933', '113089467945903042011', '110611165388486561259', '112919611225377424373', '115814151289989447254', '112716356719620674952', '103907806627406122152', '104379889290835604797', '113080097564170130382', '109552827669712443245', '111551895671908911144', '102895466367599808754', '106600888586191228714', '107298348691874586741', '118433886964242604020', '100418005816333723742', '106662284560730780137', '110913301259512662713', '108794292461789825190', '109412257237874861202', '109088205526489493056', '104612445320380847872', '117170170174543303852', '109923941665874520762', '113363646068719733361', '100739054552561408807', '110779535838978296333', '100193529331792590881', '114927911107029701943', '114445904855679253582', '107519026002586025827', '114461797505747609507', '106355679916607833429', '115955642723036048122', '110718300174418891364', '109777274122671124391', '101434687101341295731', '114400352290245231468', '116563031682503875783', '110106586947414476573', '112326867483489579883', '103959261694002662508', '105527484036095362181', '111570725433609868637', '112591441656799055392', '111576551480169236947', '114560862038620059915', '113183748074531652030', '107663039365562500480', '110206154690364699358', '108064772960675046351', '116848436511235870425', '108338976208109535573', '115698818371847312952', '107032736072425709456', '102408750978338972864', '101408728359025442160', '112398579708861027763', '114387803111205807383', '109027262653216688425', '104220478303577070626', '111248179062465351027', '114410574109164784081', '104235640973082145823', '108751350414150442724', '106348406230887500609', '105687186936182181404', '100446983091551965684', '107115510068587365399', '116041757133540691878', '109205009379825510745', '116931379084245069738', '101086330716769604092', '109075091534018517454', '103872121146496105080', '118299777136505117634', '102034052532213921839', '100010333593843286118', '116543135982869287513', '104922728021995156054', '116563593498265548861', '107117483540235115863', '108719090649071657338', '101849747879612982297', '111377961361556293547', '109609209509370425357', '118080670290451100741', '100533671478854484735', '102587376396978665016', '103740006964968940693', '104722714674901289820', '100559339666449916514', '112063946124358686266', '118225555867437260335', '107280651787223636076', '100147124150910822470', '107460195450613046423', '111745389902203715944', '113424222789153728067', '103849575657028854775', '100227644358572354911', '109641532592206673742', '105551735486910425405', '103100496883422151101', '103887446809228348543', '112813392779333189130', '106665185918564754695', '117321701192578043657', '109218824802050832843', '102381574420994260863', '110255737428907780217', '115262379772819103897', '116390186100317590275', '103913667133017833275', '112489133250282675385', '112978052889817471138', '103098258279587338569', '118170059441102440825', '108850833548130930430', '109013954104459513823', '106229554370646431520', '100300281975626912157', '110286587261352351537', '115685367613936085594', '105348766467450985814', '118338734952846033026', '117534933400838315436', '109895887909967698705', '111717725634014233301', '105375143282323232261', '100685930795708219583', '108152252385291870699', '106501936839371135482', '104880317991537968631', '107553064993463019756', '105931402039205614444', '102311875004581334954', '116975961928888802060', '112986637077267277884', '115655034901162574758', '112644625475740684371', '102067543493040299828', '116525969499682780878', '113046900515244794816', '102014759054439829203', '110931835394607615081', '104829282855000469740', '105496065140915063217', '115750766459754995393', '100834378485895409468', '117840649766034848455', '100007172880123575746', '100609407585390919253', '102329920007942765854', '109263902510177896559', '116220525110856958463', '111107245787231679046', '102533732658641069172', '113947270736352291304', '104343703635163476058', '106844433117753719657', '117062063322151031354', '102707985825149853308', '101050326530183079061', '103236837582670541953', '115244362630293643244', '116222833568410151476', '103837479966691383853', '115946343623889221385', '106717946845088683921', '114699741575398431062', '115876664205921022118', '108710568417630253203', '113288658795802327758', '110762972563608151396', '104256784603011698546', '106533248943352121512', '115516333681138986628', '115176520690982612484', '110749379267845817082', '101830803664076212577', '110406934272187034609', '100905300569153654258', '102976465024742837897', '114122960748905067938', '104683587911483636596', '114623715694652211168', '114025304953759768230', '110260043240685719403', '106956977736353271405', '112859244767729828637', '115182601594934760469', '111181389036901378787', '115293390257907030744', '105553219268021646942', '104978692719011896215', '117953965972951333860', '100535338638690515335', '114210145868661833108', '102198989015879893112', '104290609881668164623', '113859970559545588569', '105121340636038087883', '116723778495890674612', '110239380351191779510', '103691166230318869957', '109393848362875058618', '110420292101015269823', '113756014567052941747', '113617367507100905759', '104426521002896211164', '110012123643219804319', '116154269478833904015', '107742059751171695340', '106233034531015209255', '100018875761908143329', '102544962115068294891', '101626577406833098387', '112034453275965631396', '115331448286793238267', '114800792851545936661', '112525291320613730513', '104215081746139431649', '102779342949702814641', '103940267513422589109', '111156755683968442722', '118280043292937380294', '101086723341988609817', '110644454181136667380', '109255940218974596079', '116545842347056881965', '110117657448014366724', '114942284800343828101', '109354520735375044687', '105050562881420618825', '107968787521028284191', '115730240836958186165', '102562339969715167105', '109813896768294978296', '103036608814734002706', '103097764320602190090', '108707862895021250248', '114041180707541001348', '114560419219496771835', '112361670307790323758', '109684488930634639064', '100202609332472891769', '103560372727633879859', '107452591937985161362', '101546155389441427768', '110941598068260908367', '113936598898345848947', '103778462564599113222', '111923578555541250439', '107833853690974785194', '101890070933944126069', '107688720118588736586', '112687569677387190924', '109342148209917802565', '104537830466896364401', '105749360514890624703', '115695578304416858659', '113447234658420269519', '117372714093401590924', '103135699585421857716', '111499908439497508351', '106633889788682321324', '107121825569855176793', '103716847685048716973', '109074505916084927391', '105035230575568950018', '103966456721264652466', '103836101629758623062', '117676808237237247393', '117472798048190200333', '107494393074148348849', '111513508664005304564', '100021025784352405813', '107786123681794513764', '108630945714078249123', '114120360857648358066', '110444312781613204936', '118299387983421245577', '104211020927646148185', '108955339011711450251', '113334983567480532837', '105038657405365526631', '117276712791932591100', '105489399890820671832', '109524359349022706379', '114809488257853535663', '110093223425869235038', '102217919422377823903', '106479637830593992305', '112348129149380608031', '106821837922219725491', '100219691404074384850', '100119486033881488034', '117438034170680287273', '105329929314379043455', '100410224369482770836', '113109892169154607514', '108408409419613717648', '101055792269092081513', '107223200089245371832', '112805027847878530132', '100440868037895135423', '101919010489048812040', '110637597293419815422', '110254606216741293880', '100863676705877655494', '103438332263642514693', '118249005460047214792', '101465854435804471513', '104482086818095930400', '110399178354646507304', '115130390735317423919', '101973771414877586995', '117331015863859298323', '107640557126561794593', '108855511624675713653', '111128895711919065447', '105668390042257419736', '114831291174925522786', '108751908733246399177', '111914202654157075940', '104371062498059635629', '101556586078059311992', '105354532715798223299', '117285792439228987098', '118442374499163995180', '113515239158182700649', '115182542976670590862', '116052184862449347495', '118262246158210645568', '117167807905512758321', '102600774742322762226', '113505636531411972172', '107849922105700858631', '102060201510938195134', '110031535020051778989', '104560124403688998123', '113992274697423668469', '104849031809222463043', '103307601841731531327', '110828670835957136050', '114230074997360882349', '107289961585411779306', '114540391999134672293', '116184250719977256456', '100933268839312496959'}
Community 3: {'103085617641546047794', '105983972765825582654', '104008498397143814321', '116069129876228452869', '100206580117558206798', '110818906428203616613', '115821088988821304653', '107600526986147096462', '102564113003603243689', '112430941066055023392', '115222563002590457138', '100522449505652854159', '109043363643479618868', '110636416447537218754', '115605662381863733754', '110532594016299719908', '117905615888134134883', '102055174418924323405', '116631487559659777008', '110110165036430755527', '108935847714537431415', '106335292785856130691', '111104711313327924255', '113810921951646816327', '106862439864387805380', '108437712626662980901', '111844389813156971099', '113713659416450317751', '100470707899575690169', '116360888126777490508', '105950757045919945391', '107297069075999612807', '117301528374194670415', '114048655018531559603', '113643090112432705267', '109810124520170491979', '105696962047510789343', '107939800249536527072', '112587601997064227832', '100955585302402188153', '108580907161587537569', '102161576005557030327', '114487996872622597923', '109901640320829375910', '115927899106503714271', '108956630584270925311', '115088305990912999514', '101526908034897155931', '110172963494544995584', '112146655822436564092', '113044833489208838770', '114351679993413153322', '112113988487550158255', '103236636893095396367', '103393927836955584318', '108890337036303809803', '100402799784346180906', '112507146553696510468', '113395463753108177195', '108466438257930289301', '104880223385257421591', '116451755910203629439', '104187985251742652997', '110024034614690336620', '102265258556584010669', '114785220185134792845', '102856175681672259705', '113133801731812323998', '111785429799913990623', '106789718866632421230', '107694665270784358035', '102135527356174747952', '101918005417074430961', '102822489199919962533', '116553658966777600813', '116916067691948954094', '101218427092583008397', '106781298439406035732', '112012758441096131122', '109293697249915280021', '114906363890460580293', '108410143835248335971', '114102741166154581911', '113099699163883796327', '112948207061035952633', '101789714027849358501', '115228458623832241233', '110809960320658812706', '113842374792124361280', '101320235608031237899', '105386936931525878828', '113379414028092937509', '118402690399847290674', '109967520038849452548', '116585456220331454017', '111259797317960550654', '113850464306462886487', '107124741061367501222', '112654691159864202638', '111864317276510841876', '108526083482689945107', '113076983544548715921', '118405547158623959680', '117002010749453374649', '115614543339071527650', '111675240625498665677', '107717032368182327599', '103430573789832257493', '104358638965775720143', '111314298459816170543', '118422220219201149802', '110341192524580638635', '113989952886968273012', '113442940438592941562', '112423034239931169075', '102351130228980890416', '106786386086265333019', '108914748660749767274', '108297553998847530028', '110210226355281840426', '117624835703222533996', '115657617912308874099', '115885921154061736538', '114348891676708148773', '114299216858963633581', '100807353194089283722', '106061471360654906232', '114459991754652351065', '116091603038680374060', '107892475110057537616', '108231047812960095546', '101069384135186045014', '100083028955154344373', '112642000069482682286', '111124425959607370134', '100120839460004190493', '101404856746976388325', '100216780741152472566', '109121093231737253660', '101760752085339536288', '101410122195380634804', '100950848196052292011', '113744096465132660966', '112711365376938908027', '106234983357218899594', '100388110885251393284', '117406818763930343074', '117837953513567834411', '109696823328035999197', '114705874526160887472', '101099043555291230180', '112049649493922318576', '116367417773416676104', '102891945288839443590', '117240901604444248810', '100395787848557598863', '109394666996058291279', '104391468748845850264', '112492398635541218430', '106830259006907960811', '109028152111716597975', '112598958640379596257', '115153602982620137655', '117429228147885173512', '100383019747717124280', '106670103227259568446', '116589404621633397162', '118103324998983230379', '113802492661269278824', '115313181123510104677', '107083689296537531989', '117214640788375374219', '116662490332889733728', '108887626087344947192', '106565520808381854435', '104274367698333588653', '115312105864775717810', '114169984275817586976', '114199830311642186845', '112491832238550690382', '116579469156242717036', '100503445049395037958', '108242549313656841308', '100178930508976624071', '105081453736917476473', '108036390356192350875', '103628803093688424918', '113429176956556076094', '116758913018400597582', '117340064210711030058', '102295859898506580790', '102212133422609504300', '118295179538595996227', '111687906119865907869', '104193326998424005381', '101848402622172881050', '117285538567884030406', '115828296697283958271', '114784305912078689958', '100612308713138879641', '107802694559496875227', '114988600847384075537', '117863911080490240617', '107641227894855833828', '100500119744852055191', '100833759927327771255', '112223195914391124840', '102762080013038288289', '112351803051481928831', '113320906788084117736', '108820254001675732749', '108771530203848479337', '118182922034561521748', '103219502575073799744', '114209940424380976762', '102361759968770796669', '116510480792365800072', '101775524093950000585', '108471679383630694341', '117243308942096267894', '107770719014033135433', '102784875591018218295', '117070650825702368748', '113365216324107073694', '101506005479263227133', '114703535207877261511', '109222649619386907473', '107728114908464493606', '107397720457451922206', '104234596650199473634', '110543512374816300955', '111830705293731589607', '110349374445064926715', '108855335985866781789', '110312069816295780207', '106571085958180090207', '106778708167731178299', '114748147950327557901', '103570777925162495872', '113945947368335957357', '113717658330338948909', '111743183651041343259', '111627773476375114188', '105388245811554998105', '116801661589145649547', '103682008765318235430', '110083239172662401442', '102128642240376328076', '118127469330342909494', '112767504279092696938', '112961182391659320786', '109288088889287080905', '114070188121765259793', '117883390047122693487', '108160014592005442630', '118047993757870344096', '109808044793507595992', '108165994712392486602', '117050655067097387667', '115640671255200872691', '108066434247238862035', '107324733857075561211', '103265555445303996151', '109355275783533316091', '112041740896366598673', '109860635281157364433', '115101082630334833989', '102538814375886928719', '110872085952009043727', '114433686568276956096', '114227730341518352760', '115440120575827240458', '105422087877293682363', '105910584587561659221', '104843480440041532115', '112713468396091301411', '109872702242469176656', '111645064066365579310', '117642388515316830086', '109325317945521443266', '107942601052714978885', '108031006751124771645', '110020802932509406288', '114896864199234401964', '114357641398383585672', '110381004137630232559', '101313870393891944100', '104103010111584382604', '116380481330340982520', '117027244111424127824', '115827797816285181810', '115007948222565533164', '109874281655455378704', '110541044751298877932', '112132683472859884862', '115651050756606395152', '100343638081229760786', '113090177541895906135', '107848492367799059517', '104601229931716205062', '101689156797827874965', '100879038045439382318', '103878199604928898324', '116430859868857398227', '110980222106600223500', '100304707154952267096', '103588755859096527423', '110148994717304662081', '103407037563276814933', '110993048162724217041', '112429367983955666966', '102775668694964741870', '116662524588410406518', '102587974207619025081', '108384282711609194269', '111667782428575235072', '117110141415523738557', '107601406689066602184', '107423393586054737949', '111939206204962925801', '108277109036982901512', '116560241333691707286', '102533430826019452036', '114656741955473202563', '112906377675358125555', '115015177093228995825', '108392874257392795974', '101104749713872661452', '102051931523765919580', '105272480783378662100', '104580090701236191463', '106922341079157141472', '100493217029803352331', '117683270429127095609', '105499901507557999939', '100355889137061302285', '113941150576123460188', '113507027851324199334', '116724078914347730484', '113249103748523881690', '113425271499653605473', '112907360375486569852', '105960964550097580716', '102207906011480187771', '110642956329633442874', '101488987322048121243', '113044036111832792788', '116906452830078311593', '112698907428224233154', '114823530265647957360', '118157252845179803688', '111676060684791105264', '118199345638439478323', '114349555051451444659', '117054461584798467248', '102306253366596188226', '111455032772204239244', '103950664341464933590', '112949339351415636585', '109784721506518436626', '102780611764664036841', '102666881946453474169', '108016441725644273613', '105345121025021682895', '117100846811767253894', '109884785067701667752', '117185814164795960031', '104962503140609223096', '108391539382517986167', '106594020821329986940', '112951350921473837988', '106843721032813292974', '106652325776405916359', '116946863510158002561', '102553018849143511709', '102381646319327699245', '115296133782384463813', '109520007633136545168', '112511117721123122864', '107340815531530888513', '104691907434326484516', '111851806474739809143', '105289108282206103712', '106088290528974423816', '114934119556971473070', '107121667693818827733', '104339199850528997633', '100699717378716861579', '100324115853988256500', '115876594992501739515', '117287104022975516677', '112102618131424526689', '105338421946824280297', '113048604335341521429', '109370339445646903198', '106083077810495092134', '113802856141719751969', '109179785755319022525', '115498601389347851431', '117399407734962607432', '109763829064998339023', '100052542427171975706', '102054284116307775555', '118240142534336634815', '108220043427586388533', '110838314772681308833', '102891800084135493340', '104436790834225837575', '116424320985167703911', '107338602034159648412', '114908183232134487513', '101925369393583775292', '116821922284936434850', '105337595774800924704', '112451458753099334659', '114925994582423850689', '109451217741957998413', '112537210666153429443', '113789418511501561468', '117891804554988019021', '103659460131440353612', '116118617640727585952', '107124640178243825999', '117391250933799358196', '100705376863368061378', '104514815615019967411', '102119766105463857182', '116461455312137661382', '107608319097010520457', '104864856583310648370', '107380238255855866313', '111061913357450699331', '107334468980085426372', '109461209891514397908', '111256456949791590967', '109021586569774358910', '111275181471058434170', '117808113386635990668', '114350055241792358502', '115108708327599745546', '105471410479054119779', '108892475208618187879', '107421445652242933389', '107703287565358011284', '112934144573309412993', '107271110849176930879', '113946715443571015123', '110475177528305258809', '105142636641076847892', '105173197114836469583', '111966229761273029582', '116121748464403301773', '110453508593950264889', '110880954597477213855', '104272998794846079690', '109409354188175331068', '111796536840889693718', '108239800393939000926', '104510803263877952696', '106702988390101234590', '100637965571079793889', '116961198944327874118', '103211666758098368302', '102725965111999647128', '117050782464143916222', '116072579252147464587', '112514538740659938817', '115776417314725525565', '116934740007089368524', '113958852862192390784', '118361077275130795621', '102456568275733928893', '102856794076704177243', '107491401010578747075', '111819591344528814997', '115684683315149912666', '111983209365704372878', '100751666490733922462', '108090814537493778110', '103336065428079920396', '112350004852536472576', '100311759100355395891', '101070789994681430489', '106035037488123549263', '101397434466557514583', '114523204386006825556', '113379704331516462260', '115279360559837356748', '103628877461145531895', '113379801850816839117', '105051428128756451894', '102262282833845535764', '110156710772075814684', '107758710519468101636', '111980850667948046585', '105824462968743940616', '108157384948659296278', '106234301239846716930', '108627200132724856862', '107651052918035405255', '108384242789025077136', '108863062546002618132', '101375345042522114581', '101936447724571159488', '114111114344340803262', '101737468215180221758', '100011766545706941913', '117262308886651008590', '110847495546182453537', '109840434146253830108', '112747491769356862024', '114124773835978468410', '116399094576674599575', '106667686405763883847', '101112236089154013563', '108980123652711816917', '100810105420144655302', '104211893388280500547', '110208194168430272797', '101350819212767050043', '103328005512132049229', '101157327020876174386', '116167259971809512913', '115425698124835613649', '102407719052471763681', '115711592532511139810', '101813110309442962520', '100307337322096093496', '116279801967044485012', '103242938255749850229', '114401920800685732207', '103231774650216255804', '100400127231058419381', '114270675619910932928', '107339400212386038908', '108702543814354616577', '109267629991576644390', '112250094664688730142', '101748459932715156516', '108304983057073244118', '106342886874854068282', '100718263022655478653', '103015275272334080080', '113822396383311931014', '112834683868657249072', '104406240238611439883', '116635289198298920617', '102393916713273790569', '109388470125186373110', '116066491411831847768', '114349992457405805985', '106392636769941129188', '102311159512403849202', '112109037472053281440', '101130130097385944393', '107940066694197392853', '100585730114585772259', '116773904380084763916', '114923188419363118654', '111331402743171753097', '102708408519777543299', '100941538271017241610', '114293297581802378481', '108514916037838780456', '117829697648472092439', '110254649706828884713', '113717162667623329835', '115269285424858286280', '111869838031914615917', '100181050791487122707', '116359233081331873695', '103378875504108210234', '117893707149088186215', '116814333375937466193', '102147470033180567699', '102576386516731141887', '117143331332564602963', '116331549425060376742', '110641203487015682036', '115778957712807809243', '110105010672727015819', '117882325264791300657', '112965879869910861114', '104045861600927576569', '112586596895584674610', '111170744088881982697', '100710763966857069466', '109932068330175625444', '114230422317297262372', '107696353690701835664', '117920838654464543191', '117699133525005797099', '103061432975121007243', '112651866577905736258', '100553673752535851250', '112765624140796008944', '117974401611027254615', '115530363081874541454', '115618118047855080505', '111481888241042874825', '115002045620889856189', '109404463594201341913', '100112269234874034910', '100704691671157299674', '106022156686010483843', '111067215649037664551', '115485752129964368319', '117068135501406370212', '101721306032980127550', '113292726172848917125', '113781210377244910645', '116459800133501939937', '113517984848491556493', '112634729907055593781', '115957228115499503140', '117236232427248671587', '117945967639625162800', '103752661801271283313', '109203711225628497689', '112795491937714201639', '113830054822611891364', '114364536167287968520', '109518051280084253316', '112957525079450219655', '106616167062695880015', '110485074151764531630', '115981891654314432186', '104161021547320344192', '117947158449104520291', '100595906934819408130', '103393969206825008695', '117744621803365419656', '115445308636699729019', '115761275898903496567', '115758139324460252489', '102010821862516060978', '115521135106884043757', '107493849176261920315', '106751860960742746888', '115441781832242886723', '108930627587591189279', '112053085005364926482', '113334935664959370822', '101925723538084674965', '106677800808808593513', '104966904116213333494', '118060195966019127791', '100639708142891868956', '109743112425227401468', '114636597059306061090', '105806968003199638088', '115788203615961124571', '118273109037645403066', '104628156308074219449', '110136891572864064561', '117353186427056974037', '114400511119467574783', '109296841906152067343', '117367241275888624336', '105491198217369216834', '101736815086497016308', '111466256514934258018', '106392885873234273031', '110484345841717870056', '118141802745849687319', '109549970198133970522', '104464470140910850908', '111068665214970137749', '114321485561609980665', '100959709623767771826', '107185228123306792635', '111071659079284118401', '106604387147856729612', '110308738942268982820', '117986212737011053082', '115533755168271820880', '105925069070808824643', '116510988620471676097', '106660876363786203340', '115869166436186726198', '113374298958308524635', '115544147945423124615', '112575232564216096899', '117310377246056990580', '118043829592310213261', '104943951214755667798', '107298068702134685497', '106707597873526726579', '100901832804895755927', '102498093896313721815', '109231007183413034882', '101377090286904569753', '115713723640709982141', '117826959184618140369', '101102502771584214511', '110675857134745144293', '115204171932989000617', '101696937665413838377', '102086534290849129199', '116498871689601303968', '111647289322049132217', '111447933061545774452', '100285309692991954022', '100344567711570576598', '100448114051092500782', '104974727181260741705', '104868278641190810516', '109633963466675615158', '115026095333460669876', '100063246738928262806', '114014689000530512576', '102965501513711820631', '101986497528485090988', '101418655998455018608', '109757555484036842084', '109098233643398100083', '117398515194371406729', '104962408468802230567', '108047277892067541887', '103897490090057192151', '107038828953565623062', '108951176045218524904', '111355506212110972947', '113743838565384547763', '115672069277082576149', '113617608054634558208', '103078626879493125465', '111727890913073750335', '100754028313919772364', '116876281329975376488', '106442901964082251751', '101780448162293270929', '106751865239636250677', '101642244653131974428', '105192677061341440846', '105821474933625556500', '110467454324237451111', '104128901456640183133', '104174700389617133341', '108327683265082415839', '113643819382205070335', '107316762598193972736', '118279204728860727329', '101001831790663475056', '105089516381499517057', '110814889310454488996', '103974843104730601251', '102106313289101920796', '102872107203971344174', '118049705635912101391', '103049141798017677869', '116144094558714760565', '114744671423279709175', '113277888478650798354', '110730365509389723487', '107559339820010435376', '103042480432691342046', '100511424886868385181', '112741416751893741218', '102448354819895151683', '104885672108365535825', '117938188071621547523', '105162725799373034144', '109706106571754369533', '104619895142856123914', '109105920659950215197', '101072103301498963796', '110382244520337618129', '117083456006505558797', '115707670022278371997', '107372985706885686485', '104232551349769528829', '107016997159540917774', '111798739622320607079', '103838028195630813374', '100478717606381903800', '117247318686568645096', '110417927631991624565', '104009340615730428416', '116029476839811343968', '114282676462075120936', '114772948782187847475', '117651774643392270654', '115928436777497136969', '114979500386341603694', '115004080420728801995', '115352097849004888092', '105797413006713978877', '115229199245309469877', '112334343185042501556', '115172554740032437260', '105467537505247249580', '113236866516484076039', '101220602750037954802', '116422777706058955112', '110286983427041996134', '109111279878079452197', '112839928232575925598', '101193056583517527218', '106273339563933376264', '101449450315094367296', '114963488299912916989', '114675350206316682857', '118155725276648270111', '112727109062249974070', '112853903043531887288', '116940884424568179932', '105479433073351096893', '103465217892778752840', '105252691164343053084', '101943489365769217009', '101498088359263703489', '105894161332552081587', '113808225621137327068', '106587035559803775200', '106463337288862596800', '117825295339716635042', '107956542328426568584', '105903703061182335928', '104803930997912739272', '107587418353268439974', '116108676200750113238', '116400617644285052650', '107503711650551312750', '109791360079032899690', '114925799597158174086', '108286263921738117445', '106841122899821140334', '111352437725051611547', '103499368545477438762', '105925211289252796561', '107747924975191934059', '101192901791315647199', '118379000352054505176', '101103609284409910695', '109222212746755608401', '105201041573402536484', '116110610760296046966', '102144829107435913268', '108803803930760680126', '113995336775175622962', '102428289972701355759', '103816454263149317813', '117347552181680291955', '103680670099621873416', '118126347004211225674', '115689341173030410816', '109513741512379966962', '113187722424689815195', '110984271834401042125', '103212862902782606680', '100366533624423286318', '109289627542578006490', '100338416356555677418', '112758572333558174892', '107869367842190695757', '113010057574887551545', '117062343334878218322', '118158611748005278397', '118349012209873454001', '108697145798331819385', '109732549439650531213', '109410276246212167772', '117020731342071444774', '118332325963861147052', '105430907454822229328', '117813305815871526324', '116103890818997216880', '110744376106713911838', '112010020831964503039', '103098434358721602320', '104667277078128870418', '107595032996809170615', '111865406298057803478', '113073215054203328021', '110887619384180016993', '117631291002527306874', '112861704527072013175', '106908331836151201623', '103671463955249277051', '105706275193740965021', '101180785258369501703', '104372947137063568851', '106533995026755446769', '105235982891000842675', '109540362899078571898', '105746412113298738559', '102986076055512882509', '113531709179430046754', '104278744492965064972', '114780872782699925545', '113929987947344584593', '106375868411606306755', '110377303220365650564', '111062027785725588006', '101039941022270733301', '111728229082355840321', '104055282140669357178', '110918985381416045566', '105111452923852483780', '112195570538252635521', '104620657571952151553', '118214473089093558880', '112870172108730162806', '112036755127250364487', '107201076172010330925', '107172105123146355769', '115780531832912166134', '103431522519630051490', '105882279523122707149', '106641128291701964922', '110756813358647360973', '101518828985025428512', '107200650789925971303', '117364815614284694552', '102511761068223633547', '105539328907201174698', '115402182177799748839', '116693343534612140737', '102581215567789793079', '103300780979307671423', '113666732470395511098', '103793122263656102886', '107225014302645898014', '105405164073085933649', '112613441273788009749', '114018458266696869320', '117391865202914371331', '112217333135124700456', '104273637018550353286', '108801513206763922061', '116505091683856866355', '105930059453649972924', '108404946609890366053', '104038736962385359147', '115199992059830945962', '109846388939363210134', '105531572091125534170', '114182683141718266004', '116815166158197128436', '116096939684164447967', '116917206097385720494', '102349508125899300817', '109825202712903749693', '101298888927652256538', '103271658321460326415', '118108217641010954726', '112568116239061192897', '113640366362186154437', '112115081533421476554', '110904997014640816057', '109007159585570428605', '114757865363657335371', '105593873227757106912', '112780998543415650563', '110227825177787298401', '106854238123341642906', '105611714909944747466', '105956829583781178821', '103864068523411491285', '115022780772073141556', '114516658060411141747', '101084737771867139860', '112172560861633437924', '105321851493537755459', '112431283073226518081', '109813685208474090507', '101203567753365023551', '111108984891262763610', '104147479804157835204', '104060836014624176394', '113887069715004391445', '118044376908149342094', '103139840303384684283', '115896555842913040390', '111337641235984146567', '107625345857675613220', '100523220308866129982', '111344990520493779847', '116384209366799734311', '112832090297105414569', '110991808346358724519', '107681374183889672043', '109968207334240085105', '104537635068375399232', '106036962723400014599', '105095083538991543994', '117888860379667170672', '116382593774911276357', '107602331615469684777', '111297634821932349367', '111266989382103162359', '109021227629631376783', '115256943004584273173', '113270145512314057550', '100171563150698613331', '102184626189688806940', '107502030864624273473', '101587186896046292337', '103479792518475690429', '115622985146937156441', '117670724715658778712', '103502381897519596800', '107727110167018571575', '115422073989837524816', '100344808789826432408', '108119196796540768681', '102608290911134841538', '115849908610702502616', '115276350249888861101', '100035895641954084486', '104564785377380458077', '109709394126759315718', '101177682308173325443', '112642704302723952564', '117480548464445754186', '110820794171599743746', '105979317336204687980', '107892885932666922895', '109310475977042579104', '108012991939099820186', '114661360755594021930', '103734732064355272020', '111598900159849088556', '116461855266768909081', '114185096114689994575', '104921271849983300661', '106834837414881158707', '105793127072274127014', '111658282423202680334', '106320258275465885055', '106923855802416316776', '106272354161023755998', '106106821658261203524', '117420006386340912415', '106251634780868246272', '110280259585948855266', '108381099591316727400', '103911573473057004850', '112874532811644023513', '105460934303599234411', '109384186250816893593', '117034424844577685859', '103858182422156373492', '110221152747073977468', '116619476151524917929', '100820038296735086358', '117949506784356423186', '112392276745470905312', '112645899502384266957', '109160338783101857528', '109676361246887439309', '103384657030123661742', '111519951519463790264', '100258334011087649533', '111027284544490817916', '111692855156383085305', '116990168708635853323', '101085875807154110238', '112181800892549889428', '103208040491033452139', '103215118204676654992', '111033954577349017322', '108170087434309944356', '104448901441432262634', '100520841574704742376', '116753481369792868776', '108792603836025430903', '111870339209463346799', '113216750740091805639', '105669202966609927896', '114496209629631684030', '102854726469095524211', '109227086945342747033', '116322354022892290682', '103067858337492764713', '116052139727639000293', '110014685968790342778', '116370179202551456108', '111336937779863024336', '103491854087443454711', '111556733810295164705', '103546606846558525849', '103787783829767594677', '101718721235666083805', '101488623257152792677', '100635228299423960203', '113387502193006912911', '116120938490032484765', '115378179760848312148', '106005729437549906434', '114152668059803275565', '114543596587502011441', '118142346047065153994', '100552218167336051484', '100063647165166042817', '117047618366534042599', '103123795700371648708', '100514976758718052215', '109646466456271611206', '111080954163363728197', '103044839780614975811', '103930930607634729491', '115102606592602380333', '108454829510235503094', '102936476334085491942', '105539295017962507152', '102398927265160061191', '105515975605932175218', '104533391525647218558', '101439625009414417068', '105625444509721186627', '108908905437388916616', '112308028838141112135', '102832384031835295225', '114890266437236125712', '106918301462404216919', '113358423478528482619', '104647864569202645940', '110528452190679522178', '100335232852148192677', '103486647639446357540', '109487502860976000657', '103749144675480351495', '102092059340022443197', '103169210114021506842', '114885988123556734014', '115970973847207435589', '116733443859739561547', '106356216317225465122', '104059123234065044277', '109309820197217064848', '105384382055180690224', '111822662218646303443', '114658682617855410839', '109380621360536492062', '111009305741828693706', '114487977061531530095', '113860361393063419375', '105999429413391306532', '105966990120964747635', '115820495930321001915', '113940922878228019997', '101839940767317645124', '106213194246287288177', '113280093803891650025', '108519736684761921614', '106743071953429960847', '101306547542435535669', '101624344463617124819', '112695269892669446372', '118150773446660123426', '103584168297226033201', '101269853254586693559', '107551093427664071536', '106927010583023043830', '112701567053801268154', '110784139642131978630', '114966033299734299079', '107561724776777887565', '106692802992355014970', '102405942903346350638', '105780367195036563164', '101086809289767457386', '100926443266255107413', '100239801091531764729', '116967313757199197659', '110321435299854167627', '103641985767984421846', '105589394487766031696', '109063472013788047799', '103814936460553919349', '101879578737460479558', '105933807834119736876', '114446699242256208339', '106524992359194053598', '108118191463262999664', '108417239551693556944', '105427758442353241851', '104743181121186301547', '109113390312993726342', '106957534413244462148', '112881359012447217903', '101983494889420739895', '111789349839968119214', '110678933650847365451', '102147854886428419246', '112255723503311909994', '108121345461041701573'}
Community 4: {'114097496219861321469', '104573486059675635690', '111681676130186959844', '106954748385086768552', '107831461802209856785', '114837027808189046569', '109906764666611489817', '104866106845028545043', '100371124191940719708', '100157545290626109770', '112495939373510305859', '106289396125900034576', '109312807119102647620', '109077517818871412522', '117483731061925679634', '109319697101002865718', '105881036858154103165', '107287137129133274038', '112650217638620076242', '118244930991753609833', '100054852113600187077', '102062870474410361062', '116001580490263331050', '116484498084689907139', '107122599551575289855', '116381570864293440194', '100270574862523429836', '107765933329739138214', '106313493426055826354', '111034441851680943443', '101006440605720097105', '111855745938563259636', '118436289102276303420', '104635151282352511243', '116290077887448432187', '100123787747320462340', '106411014827417944940', '112025618580264580245', '108642196100028522319', '101073758296671129324', '103222964490119077133', '114278989693356567533', '116084125191506040577', '105576544387498423799', '100150961707827223496', '113979728725569166388', '110272379366764495901', '106451912309633525724', '109648884633294921902', '100069098946637214883', '105299635877931623702', '102686616929258912550', '103397298595530267892', '113910210224060735649', '104887042975830613054', '113994579047307261374', '115365383473829789594', '100541628676455416922', '102606011154397312231', '102200035461124399935', '108596402328892778714', '113005893041202160852', '107253819439298997322', '104272418664554007696', '110446763708495967142', '113133012143826213877', '101953063779212379620', '111683627192293808940', '103512785048227255164', '103716366627982837466', '109176480997059360408', '110548653453863146838', '104403645679938295807', '113197143292984743587', '118149110539981911898', '117030648320144850283', '110595079841557118940', '108329510217174241258', '116215035717347367191', '113728919577697025233', '104191169675706355786', '113623842698354744859', '110904916992294314692', '101535913864968833887', '105250395254967964784', '108814842442559659465', '115599950223263094363', '105990743656193359936', '104072171209329993974', '103796917436738204815', '100336085988747292691', '114391995631370298028', '103581229887535173408', '106805948636524457039', '105297126909425424603', '105276586201433699632', '103341451860952619043', '104158625857412477536', '106630429585084253160', '112871278216025356827', '112837267883067955912', '103092917725006104329', '117757905308085525662', '110454988718983963442', '115441142772514729306', '113055142350294373954', '104329053298815612877', '117379275934830187093', '117826988264349743281', '106675224913779303578', '104732873677645065798', '110403425796260043049', '107906669686999645968', '101760655325144749204', '110052402192526491154', '101112992644368764023', '105760861697927105754', '109461630423415869641', '105285917150128101125', '111746951539662187514', '103660453060032952766', '103572429765726687286', '105799026969409804011', '113738474438266222045', '106331984686416850340', '115228187977273227505', '107490378065899763077', '101966504716855672551', '110282337149506574319', '114590063748597814776', '108544357159592154209', '114347706819482413805', '118077822787083300269', '104279041299993485202', '115058640228654428142', '117198121368352313824', '110224297487487560595', '113437184728879709642', '118103609092842967004', '107445370408717016354', '113178605941445299583', '116709647324659942420', '117810877521993275165', '112535373940860013623', '117498889196623755427', '110716887181623220442', '101702479371552517591', '102570452464580201593', '108434099572571322545', '102345425210226906999', '117407248354045008076', '104069530608964288835', '115911968105795827985', '105191596710300416914', '116312540498387026869', '109068167891480896458', '117133587009609972182', '117229482342328365574', '109432652746770302375', '107481991214757842241', '103422630022405971495', '107592949376151715358', '105507095909260769935', '105674260227367927950', '118090478264718788628', '115137818031101961775', '113662516460298582669', '118353200324959898842', '117172337153860280609', '111139178491197428269', '114093385086167321636', '110760240619740835290', '102623655274797413480', '101846564375625648594', '116194805839149314900', '105053094958715006928', '102851767877912089372', '100615800039965932043', '113912634738663811163', '106130390484039540975', '103010425898585050433', '109380741358775850093', '113762318249455459070', '103149558185397171374', '101018145439027560672', '106573113861485637226', '100777210624696599602', '115787850797785033402', '108115916250756840114', '103742783408207096451', '102876709578134640367', '116299589545421107001', '108910050933409628573', '116729648165664031328', '102288844760504718295', '117950959176682111444', '105300233952283584399', '107852201977013994985', '115351123265607800199', '114725034725818526325', '104120676409775979964', '100303443467283440052', '107657303441401954453', '110722150811610423532', '110897331270656007546', '110817132422072935212', '112965779835487899285', '106689717315029198368', '100181137709705154455', '106749080041314978684', '118374725645290737881', '101950296364337023624', '101130554127272203361', '107331966882500152427', '117929077685178623308', '111355117577885353397', '114730557568504331710', '108149643222167095987', '110395941852431233228', '105180072154051830071', '104784802407400412997', '104716200150835943028', '106067228779769510233', '117370966349661191969', '106409865193655273598', '104575005770715722059', '109179440480690210770', '101930273756590526692', '107416437600401707497', '115030149688037670763', '107011147695167066730', '105810562639438702115', '101234551395732077110', '102453668798957480291', '105779946165110330931', '104341900759397757880', '115333128436850331257', '105979887282837700889', '114205919087035562033', '116544271837877596486', '116718690905901431015', '114731662826480518553', '116519056528600643832', '106020193639378373083', '114875792116050212693', '107711981740147507868', '101854644137927716816', '116260649389586783190', '108962133755826284634', '112251941853874459608', '105849077400855029958', '116849779729662358367', '104708995356038189416', '104987208561071654282', '113699708767960396706', '114557665490017079738', '103061056575763360930', '112934353089140833925', '115108587582850919044', '113319219721074025686', '113301447852259599140', '111964397750225959150', '108222503911864518174', '103866964593319797471', '118403131906872944414', '103237167457813120569', '107200430062956176144', '116590594914587418901', '111921367452423769524', '103347304583610357898', '109822806303999715626', '112715293106822551106', '109116602576050202056', '102267639772177037037', '110020557006776830961', '104567175026951794273', '106655827260160430953', '117547656323494693475', '112176340949947001463', '109589427769006016766', '114203621746806935342', '106562316483634799748', '114861661984499551200', '112512434399241915351', '104414711119037281669', '101691765789597996367', '104276294792480517398', '116807889910676780010', '100444834667123150970', '101837638784921043862', '116036481515659867450', '111547570048141399382', '106122509807208834097', '117417792140441876969', '107355694228777666992', '116564253557985278868', '118403043456372311242', '112076812699311055784', '103946723703033636295', '114669598900607567775', '107448209197410934291', '117810420001614797779', '116315464516310546230', '112675976665524834902', '102013074696193304759', '110345973132656198226', '112450989995026569848', '116182396058865522776', '116474511105334438821', '106339499155940196540', '106683431106949873364', '116655457370403027382', '102310890146245622800', '104122361411446757053', '107034798934468013182', '100656496473269609877', '104000647597016357708', '104123691226032479876', '116268018784300053383', '101154528424136734545', '109344010200321397366', '113925451294970346936', '113436506351441975392', '109470367502635009694', '102229901761168224294', '100200964418028975515', '110200090267880894083', '110724214970761989770', '105401990901970610066', '117204421699046601980', '100999033796604415123', '100168626763684832927', '106886604733473783058', '116041140171133953176', '108782005507296260225', '110473546932795040603', '113985322368682955916', '116095639022879898171', '115964196900275138161', '107328618521851097963', '106083250657033588228', '106541316160683690725', '117923884289092610997', '117469255855359330012', '118389684757904189136', '103306003468002442192', '101731341601219743611', '110527885778459642968', '109346589629046841564', '101550821898112192382', '118367682899272496541', '113081933127275463077', '105998637411706737184', '115133695821197725181', '112736432557506477477', '118409402162572399396', '100722753929517370017', '112887099402951034032', '114946360882965335022', '103828378545252884312', '115849247914052672154', '108475247565659592490', '106339622751507292703', '108890457957443035199', '104331176319540507215', '101522684241299643549', '100324611213836122030', '107844105122879049615', '116226266088624078476', '107371403067683339842', '112091371604361726160', '105286518228567782450', '100031729696397627369', '107782846281794243668', '109319603403082792930', '104935674947549962693', '109302590471047616501', '111474606582438251199', '115514469977575429239', '102457443012854440847', '101542361632933122829', '111795516107774854491', '112308586216096358240', '107993952342609782826', '100616411572886359734', '104593865515694703900', '111653477432567703218', '109029512831662153590', '116059312686720002463', '104463001207572778059', '106862988338556860792', '104334020688209414779', '104489677490791027012', '101907462169205478178', '115375778237392206743', '115744780727603059385', '101952050791219969491', '105150407380392045974', '109192106124119943093', '109342572458926816594', '105719500521771463644', '106246873602693719018', '103588164384459508839', '112623636099891141840', '105409190925467710269', '117870808475081739413', '114754697946961851157', '117061818834931774865', '115170259792618047356', '105837919080650448219', '115124450903881303454', '114854050793213786454', '109040281510266023760', '112765063827689717843', '108821489998606902666', '109063967592053060569', '116454909342425063685', '101550987952310281630', '117593439991880611037', '105304378023511234716', '116998873018117968569', '117135140810433712673', '108910286861120980557', '116496439312971438607', '114068432671808519050', '113045466450565088455', '109617669651398801706', '100389208436377457983', '108937649121550516720', '113833553413753568118', '113848938016044308953', '105234414239943953365', '114174746379709972353', '108694999723490151902', '102748494343730866929', '106116111304373377701', '101354441091842664610', '104786024753659026227', '116779269061797580094', '106862917395636809511', '101566943613653116877', '112327336652745422770', '113059064673629119043', '118249634210188887125', '102838138583064945930', '106334009644134748031', '104935228172471109892', '116048904683820016304', '118060894792801762425', '107961909714835605643', '114411508845725634301', '111290063232563087814', '100390911285440072785', '117122433889648725240', '118394948729893738407', '102342761259768437103', '112176553656808468389', '106177489114212164176', '116138786772928269548', '109502391990629351476', '105902872654387010050', '104242563270993106763', '102012612770434256811', '115571970350229976913', '110932688058687456477', '108616717991644149134', '113796832713524832871', '107988300064883917872', '114744484073167880896', '103139665625941938476', '113070041041242941734', '109991528910655285219', '106015302319931229193', '105411056393426072571', '116517250521562587527', '100313072649626335528', '117011524888311158858', '110821488387130668360', '116256875652312916801', '114757787298426192035', '115532072096365435569', '107270426617938957106', '117559430562051321261', '117566408175631541260', '100649822948837654956', '117408904061966937080', '105392362718320035165', '111645654613763694457', '107024613396731020745', '107646749085787059175', '100881464575528030643', '114793644794821621932', '102573786653104664048', '110581389615206127584', '107975566196167976208', '105121832467787367193', '103662571964902593460', '101773440211161021500', '108690084792727316159', '113616640765997699553', '103770663582854272154', '117894340754176072950', '110511438284583305486', '110989929638570262676', '115090435247953688197', '105130885538183905552', '107912947514298833079', '113633362967830926573', '105816119091204266916', '109710860352466992293', '110503210329656413795', '116237065946900700636', '113141965432262042694', '117157829820978075610', '110028623417333097448', '112761777245688047471', '117384195192115374185', '116899250657384935324', '113027150304777019405', '113575526862329928833', '114635483941253649120', '110428442283431421958', '110057522432190234142', '110679598228966963070', '114183137923337933081', '116356430503801962141', '102522500090947503238', '111208865133086806253', '104481808509205947707', '102035393260582030567', '118387783857293817675', '111964427436911173113', '112858092544896419992', '115051115523409288026', '104876349086803172557', '115438365267871017451', '116262591389834864863', '113177863890926972790', '108069014751098925582', '106818734660480151500', '112177467951569440957', '103920481666705044033', '100494834961167776426', '100421139972250968183', '100539174979656355143', '109475527491392723647', '105674868031796512961', '114525483321204395230', '116307298098390231581', '103400539017655918383', '113326549029558903350', '114622321481078268487', '111860396306475964659', '111906965576044090823', '109014964343408806746', '106640006176164717168', '105307893855277774263', '109776543322389225362', '113328481916421863767', '112382335653579766100', '114552969347679126411', '112921963463851309592', '102024817640810796401', '101559495611773608240', '104416877709172718795', '116954429517555721394', '101223540714998438009', '107832024008554095581', '115325383594144672109', '105679350230631156017', '104407970719650664433', '100361519886110921481', '101281364107178931516', '103195360697505980456', '107985052432925642059', '116700875168940136930', '114062284545761674313', '106106546939884062848', '100856437210078432962', '105842642255182233389', '104352361378421651865', '111685577044509822685', '107830487060452415557', '114918887813076887251', '111425431039480981067', '110292122607359569218', '107982678256636524642', '115338871922473838290', '114876601050379165428', '108781584404140127488', '115181488525106596616', '112037618899011486869', '102711596660615432603', '105733437086326538813', '100124086555600976229', '112127728392748408724', '103869249820759315683', '107567518319739740752', '110793930922708745905', '104242283950603997812', '107470992554531896254', '113871997710538209407', '108039600296285650802', '104734748472295807737', '106373807068444615108', '108628314995923620147', '115226168449959392922', '100408528423037919018', '107922544882851972166', '109448673776869516451', '109985666329452802198', '116719444530341482355', '106698162459088101896', '101177376536183653325', '101381679970356474120', '103751174592202697202', '106539755519829742102', '115906860576094139773', '112714013957111128592', '102614965611269780525', '118239319029101149481', '116457914848019075012', '100814032100015431678', '107411106368841463158', '105002018385576813173', '101092059561848768883', '110999488339958362893', '101046543972811253862', '118254010428468551584', '112445838081844761541', '117283869162666946515', '118098944647850434392', '117083667916050072747', '117095001964488913659', '107222092296989264299', '105815694755091410180', '112716883543222754113', '108714698753911013671', '118259343203251666905', '116812976256657521981', '107441786369345747459', '108738965548248325351', '105757139436876221207', '118435906254967423646', '114461541853345851696', '112060933424231486967', '111083308375001753987', '109721710332650526284', '101548771922820069778', '100668347524997768777', '105263625888398096639', '111864732152310614663', '100090952095649844757', '109416775160486734007', '116597585516196061129', '117463317808146836308', '102954719029374709928', '103054141995375616536', '115816820232218019786', '106158010505492054255', '107035284289191400272', '106542106648136996331', '108529028531608338300', '109575796988793842473', '102564111707590971894', '112001431216959736194', '103772767727878813972', '106024011430739504583', '105207503532449602377', '112971737181539873243', '115097399944496658764', '112182014010790169687', '100143480138420740573', '106223037804474794359', '115945152427630552532', '110483303109556439437', '100240003568631909322', '103357428467022436927', '106983847110966171823', '104646488201211720764', '104600821696890063391', '113022904029778750388', '101215591357129842563', '117134019365724378864', '109086418792776496484', '118039734862009110928', '101392743763634345386', '106814428838429723282', '102900797177515003330', '112173054856441715956', '105924556752185957529', '101152587418623666290', '100283163441099267757', '110470568710865772380', '103646159813701269602', '100570417394044999840', '108111979683543545994', '107235836272871326953', '108619032391324900465', '100013091829863179473', '110225831785117819924', '108992725865372218201', '110532666578751914101', '110086445754294066672', '101001228440374760300', '103604672463088955975', '113441677165767979212', '106849781319125122759', '118069281985350505214', '117822176070532596123', '103782079546196373275', '117728499292859272086', '109348447367336459216', '109340818593897167412', '103020369468889937836', '109943461923809473783', '102685702179229734566', '106157746025738934921', '118199352518216103455', '114601012761931725586', '116470558005447302311', '111820184079872274492', '116862464147244877970', '102202331517715653752', '111169107525612443289', '101204520648925852210', '102535956347688813285', '117493336126242317418', '100179938650813600555', '105309842626703137708', '106356218876796164967', '101126932578618410387', '115893158171921178603', '109195344866766104501', '115934002359395246925', '105451808940391245460', '102088404387415719572', '113806423998531951068', '105433899137256415625', '106110536349241642195', '102752196290767292537', '114362178095305788081', '112496371213623651840', '108421526169172101028', '118135170684846155112', '116401964491260141890', '115655649171365925876', '101445921635222387629', '117851905208018548777', '114434663766152776745', '106785848569295144419', '109145579215340567065', '112356396431100445695', '116791718880416822022', '107099315642993813766', '105005445357634025494', '111405867742322921203', '115019184728424620434', '109280516660940383309', '101377455903924944571', '103897161575745571703', '101183209094020690835', '114100854501050445815', '118406947175698431098', '108970014305734837567', '117691126566541004185', '106185831494377417051', '113818062089472688269', '115035355534990470449', '100232365040918320592', '109724412662111867112', '112816227480706188136', '103815337529636875936', '105023800589153401353', '107145282129166855752', '101430592649146588405', '116618158230181117988', '101306345570439527776', '112228357787521279416', '116845976432088781351', '110200368068032690403', '101208308104268381970', '117558822046006807900', '108188053461690243930', '115471010792915331319', '117491145199526250458', '110835175774698165749', '103020619488054482955', '118012569080559959498', '100999054273222870046', '104153455955699509486', '112549320206858533351', '110900103939806854297', '116455388256573426531', '113955722524502803458', '108952954363156822259', '103039349726713203187', '115009360298107068157', '103289687835035318792', '117497414428881954687', '107264328057339711523', '117047761163686241137', '106332376297862614804', '109864602688688099978', '113589729988160740511', '111125081208149913054', '101414148748491078282', '107763115366046597223', '110726591812935655111', '102808893353131779075', '118137996312080560038', '101932751256432792876', '114525403423298536808', '112296267655770106320', '114619698141821409115', '103466986999034188157', '103172634535512919143', '105656239739254031891', '115841972262481893225', '103821902811861099286', '105549812256690217361', '113562090503309331928', '108959002328455849881', '114771820386582601982', '109360831420720419136', '110766726956020773607', '100111592591313144838', '102108165530870690269', '115111537532492694677', '105065317973590246539', '114507838850376756775', '115701671811606727022', '116872743143866069441', '115072063373078249290', '104316851154270964889', '109741940229557446619', '103185238915755716669', '103104857274117679241', '114641588405869534144', '110067884309139099904', '113705573405943149355', '103933864581188006696', '115348854905996846294', '103528312123316803281', '117892022986632606826', '104965294001118806389', '104893487474688099744', '110714459069672643628', '109940847524098454115', '116273963343879687109', '105750103285349229362', '114230538121775077286', '111965109568806049002', '111367628080250080638', '106845425341582969249', '116456330633325059305', '107638639177561601597', '100497462069909664810', '114542443913072027070', '117791177992392286404', '111324953509422842335', '100890390496287819773', '103413624589939763125', '109208200691169807980', '104032503450134250410', '107158229762617397491', '108810157580311791513', '116047940593684944685', '115670379389076530613', '116655376532308354569', '110475404833090496739', '110344391526757887983', '113198783914756108835', '102143492477173067981', '101473585840804808189', '101813096208244667974', '100006990849369661180', '110728852384511086108', '102043601498670439459', '115646937873843170935', '110084701690654274109', '114551750003165824820', '110958373802900187128', '114581424069448327903', '116288574098854741624', '100772294993528278790', '108398349005036795623', '112329652617120664320', '102947636826725303848', '101915227705460638776', '118295981126037343745', '116604529465030755068', '118304269524348478206', '104889692039649443489', '117999890780120868480', '116609990072005614267', '118065916553136332494', '115510020610916938538', '102761118604769911317', '113312406806701709691', '112481042616955487299', '106390582790525204035', '106819187364405071833', '108652029511994590330', '118273547525494757402', '101900474122716162647', '108089106601130554306', '105777705799290495968', '107505743317459950553', '104016985569488539819', '101106350839389620762', '112713529290769738964', '110141103576339730899', '100734752956746464971', '116652450571406852676', '103652641453075961728', '118312492562846251985', '107496591042481649881', '109144827483985204411', '108107996748319800907', '102902378631402394759', '100174072106718637123', '103658829993682643285', '109690567080019900520', '117948302898938766615', '103561113693346098631', '104190188069320497371', '101508625854771954338', '115053600187527082162', '105003422821156722088', '105604069278255341131'}
Community 5: {'116468216544062271097', '104046916340097922666', '101868822136939695938', '115220059842352556023', '102326580693686287026', '114621153134779644753', '113283695724851654622', '103234332780652801042', '104499053160575166447', '118006086433493778757', '112194792318380622088', '115811541271322632773', '108628332994190914856', '103716479832930240008', '103524055939131907755', '104361087486033569763', '113788241083294648761', '118019287471576452733', '111063192804727716642', '114573281038995953888', '111357515069740404885', '115343085410499022919', '115366624923467413091', '109843828088211017735', '101846663383863114495', '103529167274147858547', '103395589763325727511', '112145622594875961532', '112827841926665336567', '101948349101568068464', '110054029942681832507', '108569008585628346586', '115870520767977167446', '113484823137186000728', '100071164040322928814', '109783956346734555918', '102711642731535559163', '107316853442435558214', '112609517161334016650', '100394395551768017091', '103248397142674242369', '115963145348335488053', '114622609383266250790', '113670148138361091894', '103394560738774733868', '103365704180124767363', '100921632865243679881', '109152312140840616267', '114298324147110143194', '100359338924579072869', '104963961924365803475', '110407092428064841935', '106457142006014151666', '109783526692692081331', '101723976631590282821', '107981821250814517155', '110747148472231917490', '108904656638826132163', '104416411107400955515', '103535946573442710526', '114550645795896573524', '106545262029116327380', '104972721249704270949', '109055242054642862127', '109791206381700012636', '116256745986570386283', '114555274410058700863', '117117600757952378122', '102937258543968944964', '101669959562855172123', '105766362799296501164', '106610545532215609602', '107001027820014531066', '115345078124086435047', '114187975402230838965', '113400695422247053716', '115159707429617815708', '100962111993029743319', '112610477429130457647', '101352107513314486437', '112948966924556872563', '108640730208658375048', '104740514146531220538', '117111335394382223808', '108178207650853308679', '112342426149366955506', '108273914781510795704', '109056884094857652707', '113873781986693688389', '106349679279335574948', '109879374011004221262', '111569896424543847308', '117060703196586237621', '117803642497194117339', '102721399784897563084', '103460219165398143523', '104204254757666849633', '104946776955279083889', '108054990172787004700', '118360657256718674113', '111802754925114763101', '109547690372498155791', '104351621589325670098', '101639523004545373108', '111537704622196023392', '102605000878147192615', '107636039981782815369', '116362155647939804669', '116457532260807710304', '112262439836455273300', '101267509933303007646', '105389799977463075906', '101374718245700461547', '114737809107887162212', '104793006412017412781', '114985794725877337193', '114045603881637147382', '114695580362130431047', '113110971663409807057', '116761744016733945906', '102240101933426448605', '111730710455997836061', '116738587046996491084', '114886304956303735936', '117095815363887152491', '107597323962944043918', '113620670261169094046', '101407009409701390283', '109236874716153563646', '101037292955892384748', '111085388851363155663', '111742343454054726289', '110846452673188597350', '112833261296507367029', '104921930685341967156', '108541079281516566798', '105536667031364343671', '112527216110458606588', '109160789511323892416', '114557986507420935147', '109957883025402319418', '115556962306803741173', '101987786185261849746', '114579540614572986264', '117096391660023873385', '109784558727919233741', '110722532598826805195', '101695275534861561311', '103482300621829758413', '111025447339514188365', '106007304700683157729', '107462255763521362325', '118394760911261750146', '113462510822620675283', '109289143754753929327', '106327505910108944619', '108667181457251323950', '108282066162711324229', '115612726978870268942', '113807532026808117133', '101309594172155348098', '116320024826202149419', '117417227586425647502', '105044761997788423637', '110631676822794043944', '113592345664494580052', '104289468694294480220', '103961529097017575648', '104509404632904798018', '102756208978757494940', '104535334557845028691', '110145122595509814622', '102701850092950268755', '102427372125699059774', '104776183384905805748', '114656704900569262437', '107921106734523224142', '106753657497014173531', '110150568217057141750', '108388744738976907488', '101647162523084638872', '112013944850300672645', '104556905831991887746', '114634942098954628378', '101532865989869207581', '117385424649694050981', '109557245858767694628', '107702897920520047924', '104614763853285958491', '110964613329687893893', '102717751934196940078', '105088335088150431290', '113949250840141500044', '112831914935496085057', '100434007800683653004', '117489787195942744889', '116588565624071892603', '110661144960714806733', '117956906693561969132', '115179679900545378026', '100284380639791061360', '112906895774625720385', '102567241660088474352', '116100557594273451221', '102644153102940831808', '114243181288401368772', '110724521466741929088', '107729616763403540177', '116066495679442718633', '115006334927567039001', '107928687956339265306', '102129340199452108037', '110131880049968153614', '107868795051879663288', '115422708618964947722', '115791251373355063988', '108658079922906538854', '113391812624898456365', '108803507657326865440', '111078121985798823731', '104302227863627010168', '103916079036365611807', '114552845842857988763', '106084993175375770418', '111963037991483174745', '116406944430575265486', '110676512981984621959', '114285091317006010799', '112059495545929582445', '117156643252422372821', '106895823676320711800', '113719687017183459917', '112194870506731965327', '115712181922125942630', '110074666419040656718', '116540314156571009333', '105183979003092502008', '105124294626713512721', '105971659344746186110', '114474586014693053729', '112369239682703937163', '110856164599733948469', '110395246750362872964', '110328255737860258925', '105756745201162965731', '115657921776770117538', '102080433660290300928', '113113008421957803843', '110113267320249781702', '106227170012393034074', '101573502616392667813', '112306799785363825750', '116890533006293177648', '102987482229467980826', '106768294492603942682', '102251860448506241286', '115144916702189026278', '111624360865407310290', '104131995291003477559', '107516764672406708263', '116129202013649426204', '101126829492225248863', '113730584538102370504', '111814607759736312720', '117596073634212689557', '110040311096810876271', '115826396090438791166', '109548729757675885486', '115122485763158928980', '115290690553545888015', '113712995861259642238', '107792168881334386959', '111471431489791970210', '106922749016154628590', '111151058097745623299', '105970758643072239685', '114911556638101188965', '114991074980495259935', '109801623820581769172', '116078677139979168204', '112260036556579867111', '104244658953846701890', '100786264875843183236', '105314949673148427805', '107385121604597558325', '101589576282753037129', '101716792218874183621', '104099738038157847421', '111215131602238654298', '103457319633869736194', '103574930279327268399', '102546322768380917276', '106665679675998202501', '117613501852020978054', '114852319461118927763', '110975108197404290835', '115875259653397567812', '106235817089305536997', '103620345719757173265', '113544613024230578698', '114844301280144397513', '114312143554684246942', '115579410375274540015', '118211862547796589256', '103549897207023677764', '102078623282659298038', '106054286075363506832', '116514346572472243588'}
Community 6: {'110982103837515711455', '105571367382401829756', '112377172384039230241', '107542742799095073899', '114051322401103919567', '104112700502285331526', '110720365196094415019', '111395545084938732794', '106896834505928192955', '113158814439512755352', '100621204114976031079', '100598269973249439746', '103806016066388243587', '111071516924332005124', '102301925235690691403', '108110794992218664312', '107958711860940415885', '101396087935203987162', '111099835542235293080', '104051069913864446196', '115120856388820348736', '111252465179607642932', '107550335129662216109', '115961021629090154025', '104962347070667053810', '109934978222991171150', '103098035528591529767', '101145980349117737014', '103486150650858067282', '101682363120803229099', '107712164232818535325', '102518365620075109973', '100263212516266486709', '104358861143448769861', '117919970450651777941', '108189481625587435470', '100989405473280437703', '117854769497679103742', '102367073395134437779', '103200491340117663153', '100151775940328282717', '113312804462990112705', '114634469290344215480', '108936051136828449310', '112938065332180786366', '116602440485633829540', '117744802910223475998', '104935478024576728989', '118026639398463272784', '102211457141917015174', '117740198191606814402', '112424938182646253756', '115820788059179744265', '103967652799029879605', '116307911956851384448', '107028157462218372820', '104973761519912571719', '116606856943517773754', '101530079498532728033', '105351821848938664220', '101791177624236997185', '106729180530371732637', '100884676252145293797', '115755447250576195190', '108115054713022530430', '108527329601014444443', '115588307990520146154', '110443462665935021876', '111413155182039517335', '117727808769287520310', '108909492433674629621', '107192971553731708077', '111557988109638065224', '114049492891000827048', '112027450030109652155', '113778358612690240500', '110809046165176596840', '108805430409141907975', '113537711651274258466', '101888737037632744263', '102377882249382281108', '112314395542822752573', '113409086302056667844', '114952794276770692062', '103885278007648446386', '101140516949313637221', '116799045993451756042', '112466252788633155794', '103973455051678273599', '113102179663329232861', '118081484673857867282', '116339430670263519533', '106115198697251921957', '114144167816919387092', '100067033524056131403', '101901232143740160078', '100733334063966339322', '109876915588291208505', '114894373995529057283', '107902791674095682080', '109357173702102949587', '112207995176022333771', '111270950717691214850', '106696669059059026665', '115128808368924712465', '113686253941057080055', '110533148746046121921', '102789801923294742028', '111827264205417690154', '101854596522140504619', '104553354622888388672', '113735720007216878493', '102476152658204495450', '108962741186348488072', '108542426628002931624', '109788364985180710349', '102239645172983099492', '104113090686020048164', '105476381299539058508', '115105647022907007398', '111658015968588216135', '101012074427509537656', '104789218149315172931', '108562908057958673728', '106289562822644692555', '102409541521880756024', '109682939969680363210', '100614574079452152235', '113367609333589754250', '108099300904077351421', '109448869774190219738', '115530776534617554663', '102029505169101002492', '115035788588651683340', '111065108889012087599', '113625462103500841369', '116334827514261561554', '112301541190997017883', '110335502145499106670', '116829662773256359149', '115824148400663257772', '117345174540134167439', '101261243957067319422', '100373879261141895060', '108721466183079531495', '110007278420345367676', '110700954090357346840', '111962077049890418486', '110839411749298049815', '117144717681042935359', '112543001180298325686', '103483946223213592002', '113464569897311842405', '112726038360301567381', '112960723772418803264', '109660946159817383241', '101962829696981365403', '117534567438781655786', '108439032486286528947', '113455290791279442483', '114425490816928105316', '104635208492390994067', '109959354295627734270', '115230695084310626614', '100467247127009384190', '114683515979385250025', '107688685271798255155', '110486517623939606418', '109549484898750371360', '102528718122061029071', '108872036879266293791', '102073090895485863953', '108901599657368504920', '109580245554247104400', '106369182367169177791', '110109050164240978800', '104199266395071496994', '104380036950579300637', '103921961939713024543', '103274398541354707265', '107362628080904735459', '111207601369830522483', '103009042022920905686', '107160493904186718638', '117386232350873428301', '106253772102441480007', '101407417062255743170', '109397461154116413309', '117366078117131024067', '108921476049574227976', '117178174201901531456', '115653522232867695783', '113119045494513107248', '106877518422447491864', '115008911624864960721', '117144151300189136236', '110364855552755751336', '116119893029262153595', '105467410031842833476', '114370942767405686826', '111136943830266615679', '102353857599000763062', '116392990330264186838', '113184091727451211493', '112471890387110967375', '100715328241636136414', '111213696402662884531', '104119324947337436102', '115552912025496877915', '108591415374085469592', '108470782772821648496', '107148487955439180907', '113027287369712034675', '114823329938030546555', '107825480915810491568', '113901826228935709546', '106539835304510344813', '100945632462729199564', '100318284953757812785', '101435445820764233826', '101348397943983026449', '103667678270324179713', '112604460828760759889', '117513232055994920961', '113141491911286106535', '104486088524980775787', '114767443136831791669', '113566412796628737771', '104361409217313730040', '114441717350702263925', '116040565882702717981', '110656253137238747090', '110727524106003793026', '113733130744129278876', '108770653757133854006', '100788348855266254729', '110967025760773667281', '106244331832224111960', '101021276286470869192', '110332926816477645847', '101459244916026082012', '111349868439224262161', '111304816721436539164', '117790146286148495130', '115723566975460105672', '114536133164105123829', '109709123163755447406', '113339552992922631802', '111897304149399931763', '103869411862361623647', '111005826307581852443', '109117683049682245427', '108380092207130051717', '100863443133800520872', '103856102573349408385', '102567913505427533346', '109059907219475437294', '114955415628566000965', '111819236720804784066', '100936611936552412031', '110352549244167947101', '113847951893881070422', '111292852688797062644', '110230281306766498092', '110787588731552125339', '111831478459732211063', '102227359845636175866', '109904763645674951310', '113073406875270826678', '103100179087770804839', '110592217550794732321', '103982026062058011075', '116145535374061931942', '110539629556793511406', '115501845285984933590', '101793532287583914396', '107742567767125793693', '100233855327522109645', '113847960209069198389', '114489504825638353488', '116944895639367062510', '106783205666952995890', '117493824815190510723', '110258598415939907971', '108705174211639807508', '114585365564249361309', '109595207260473206750', '116706759796316956635', '105284909171916066479', '105549797352796189905', '104509998201090784820', '110492963926129353210', '101326473558851266458', '109095303593518604782', '106287665062204946341', '103180225487085016120', '112401605196934673030', '104421516155000869453', '103449225731496343372', '110428208980667090075', '106691815833988358623', '112707199408484711520', '113330053950020592701', '105226830752439745179', '111673151624151424655', '107718415541322365745', '108189587050871927619', '101571754529239598169', '100428608365482025348', '101822465806938657698', '110054750107833929512', '108166390741516462144', '101163289899816448462', '109879692651335695102', '102958145054444947691', '105374700688270765519', '116594199576805510790', '110945896776944314708', '110831145427311371794', '107901567859451189933', '108410032341306707952', '104833564316573420990', '102373191596205712937', '114190326911424105519', '103378646574928855349', '103519655975029093996', '102221942940843100503', '103761326311610249621', '106246515271419815754', '105380459908389887494', '110036682383342142442', '108834544234077411259', '104980385454111154883', '102865263115020893218', '111769085873048335018', '105321861074597835055', '104043364168815281563', '118274547296450170219', '103955438732431695722', '111028035383789880812', '112794531066162034186', '116992221479414639679', '100898726845422891469', '112971045758474660173', '113755187233078454885', '113779138689277176117', '114461296692814286233', '111299245834134954469', '101214841967281809074', '108571456086494620884', '109447323719942836871', '107870240225843632731', '110168117080267015976', '113438256900303213931', '101832053372535369591', '104969869726293835463', '115389971856894286101', '100095245926948995335', '102349305007676725479', '101035196437264488455', '105390077271236874234', '117757565120070816446', '101041393667288046408', '112803481233104137827', '118248222351971105532', '110548244043172681974', '112149213906505177735', '101603746022982792137', '110988374761204961984', '109307561029264799199', '104983654600361059729', '116152970063442634520', '100598525921317755223', '103469386751228828199', '107840062077240024350', '100674199121071462978', '116610527104514904972', '107922551547738358282', '103481047858421470011', '116570889542655364711', '115560798821543443948', '118306769346697090627', '109330684746468207713', '109592634059397506775', '106567570642614609073', '116782192572708139607', '101059049290567215584', '113213251117183229314', '107675155083026839050', '106267119201158302928', '104109881446393419681', '100492353504658256691', '113320496749088550746', '116161263828563383494', '113683207338912869760', '116011252490222413570', '110172348091748214966', '115065563322811017070', '116166930518893390711', '102321124479843527561', '115076389471719869628', '102356237746208969738', '104016949609489688294', '109619063322910077914', '100516849708142559734', '106142599927679917738', '113944846007907559686', '116214152295449083654', '105734935003600818916', '108236967479941000106', '101241183982769454084', '114000144714480511683', '105856621798485106306', '101978671256019596033', '104653362664872054225', '116281970233152748691', '117807705400441218332', '108629717769018996477', '114369704013100203178', '105336425684208963598', '105943946099362806788', '116369071500456395369', '109964959136982994865', '103697821787469756035', '115571998474046088312', '111091089527727420853', '116071275946594200077', '115065390642296390297', '115796760174145278692', '115582623750221438794', '100381291759660513902', '113111731715139693250', '100903238217033771636', '103234084964361032213', '100109420053181930599', '101822180524655938027', '105950725902891401635', '107733269574737813168', '103202760473534065366', '100622210347617909790', '116507162463328305307', '116197193480724162859', '104522833443181754677', '105694930790909515613', '116469556577026921142', '109085511401108649724', '109868957506032979971', '116247667398036716276', '101789011227801183737', '106243037947112322316', '105985329157666232203', '104464509525006371077', '115220228182866909424', '100962871525684315897', '107590093667978669374', '115389600834458166596', '117000139571713536948', '107953073710704668222', '100947952796861344140', '104429232450469471769', '118225658028481772649', '105186369823013844219', '112957708071337353347', '105425031588890472871', '117009886930068964404', '108163098546093406261', '101945270688617709389', '105903075655854578837', '112968305388793808815', '112661262066626464523', '110918518132080106257', '118390286079345532806', '105228323457033543279', '104485894541326791723', '103586615087663445665', '105256156026694816333', '103491835342998731804', '106833332484614513275', '117247033413568229004', '105209854925481789028', '106793786825005938931', '114127684466692817416', '105716259720700349538', '107235139478887256327', '112846741970860239916', '106831762557971378854', '115484778057267151339', '115683348724599782363', '102599404030644248682', '103976375898267658756', '105149904523304597470', '102023851739340951520', '104548834878308000935', '113664406921737357882', '103429023798900894292', '118418436905562612953', '113609359086719569624', '104460120585566250078', '105162415753732103955', '105706178492556563330', '118255645714452180374', '110677399908549124400', '107998653347447314576', '117876399076277118155', '113097851206100618060', '109917336159709947099', '101466477227667293398', '102390118162690826051', '102533151772161350004', '112082761712795823182', '108584805279585306962', '111100649643019214919', '115360471097759949621', '105551989431666449555', '111358671139417288013', '102616149286682191474', '113490624232292586766', '106359487807208915036', '101945136786160100888', '112999005004480372636', '108202989932786461870', '108835030427235626956', '115728458120419023779', '111890945016831896743', '105946704536127863017', '101365753232772822730', '110399418015934946793', '113589303299711872490', '101263615503715477581', '106684105564729483790', '113770461910835900905', '101240786246366714589', '117105764275907696041', '100968313568314999910', '115144866126166180290', '117301273827969054249', '109192596622462555998', '107328949221172543768', '102368034923277047383', '106927703290536139147', '117493873590503749024', '116363589319724692351', '110043171163156002263', '102531836850496556122', '114092052797730247075', '103216887847401478447', '102530368133542641112', '102871123574468799566', '107432398539341365940', '105431751966778878558', '106639396424392100255', '113052929470497849085', '113102854369709041551', '114678418953901306846', '100521891736669088194', '107986485221199897482', '114745078860843857687', '101592681944110129261', '112617127041903537004', '114967530494856854235', '117681034834791918293', '107888675587755301954', '110806949181190360839', '109309820450690442352', '107147802969544035729', '114547779905550869913', '105431785227763681735', '104618664838382110366', '115635783790203857600', '103876272207006992275', '107937641967284477950', '108347904384031658715', '100979083303194896664', '107013418740229269209', '118391348074574561641', '105237212888595777019', '104992798176478601465', '113146596813770102711', '100052159169239387074', '116947923643606285942', '108604230015621645190', '110811627232176206368', '118055814112266323118', '103749216491891252509', '109974352730591678785', '115978949584209885559', '107494834634231938072', '104697068619138619317', '118298912952607658547', '100451802881215688958', '116065573422637185820', '117088476091732047477', '109537648288913704033', '105874831115955137298', '114125900939049731990', '112074050214791522567', '106940864787096828807', '114785407040665700728', '116143938603101885158', '109328089951144781565', '112549865623022776088', '112771456422304696015', '117071426829430927131', '104175289386948474434', '105547060999578080024', '107894914670080014116', '107459220492917008623', '114855370412693179566', '114928198262227163707', '116773642315914055634', '115712956701502499789', '110584481927562150689', '102195144388135237932', '110688056594877237682', '114470344106908029750', '113278937129481000981', '108134737776410087929', '110658610296969514006', '109187026428012507334', '113575786764459106032', '105885259713421409309', '104830744452856998976', '107667231360771923031', '102920063140431683002', '112774562495472224848', '107119940474246316259', '117697399358826098478', '100284485939530393059', '117429320390907645600', '117576570968762597633', '115851550445020159565', '118058794383720702307', '113860147356207467414', '102431256076502572256', '104931672265303230489', '115304645050453722342', '114288572990229558524', '101782872717670388560', '111409417452299920762', '116186860172506322553', '117638939655346687228', '107814010645733629321', '115204805503581947511', '108981679893410895534', '110995650683684547137', '101500353301932666956', '115571267671256018716', '103120687442358076157', '106758488395906535821', '113327352483856893805', '107542632252660344559', '116696943168863559388', '102873175118305865375', '103503784030163121732', '109295681144282120507', '116999207197353936677', '114789800183078016840', '112050671622693612046', '116344399331270961004', '107327838346432514464', '103042606943297132111', '106711803105103787711', '116782592593965052580', '110638078461894089015', '105620723198704093179', '113664876767408759987', '106947722115685291879', '111522003007603813028', '101484944350962755247', '113898542716176054241', '114056084994793924628', '101689986691291323088', '100892612779426154375', '109040838809291057192', '102199815200995827861', '117884476143887009277', '116819129967967590275', '103635896778932606761', '116182497437925787300', '117055729266754416915', '100258172642683423127', '102908183831825198819', '106849691022132958746', '116017676177412359976', '109220060006128553211', '105873814765821560444', '102385677016564126977', '104706374670962706617', '103878892760050193072', '107867604773686247488', '100918751310613131472', '110185257597732259284', '110701303409251940504', '117790991727782414288', '106512394490409548810', '101378754357079914665', '104201507644960011701', '105534924388664025413', '113510201921589477064', '114449136363515778220', '114532007369205246046', '108319282403260526672', '107528636311068687610', '100754908292793208642', '108845250854229233264', '109328612626879131592', '111262146038004038186', '107543460658107759808', '114908847203028092210', '109066955810836133104', '102277738523009646368', '106072341436084306959', '107876615810858105870', '112930364932290387951', '118048139271163842678', '111628952810441026241', '116056482297838775754', '102201730297163547767', '106284054047947338718', '113626341655414044020', '107904298017137677990', '109481385225618966764', '103875258484706784219', '114154062944146796931', '112410344859298535159', '116158194709907717052', '101006001190131292549', '112312901875750706723', '107187725863982533993', '118164441818555589158', '107615229800614650912', '102808382600818023175', '102881506547001047405', '116275305146920098906', '113290698547751890551', '101981930959576633793', '110206169594070357955', '112750091316252656625', '109722571975900775093', '107752922497809632157', '103154767864398131776', '106775609116257959283', '101594994894172024242', '104987932455782713675', '109774951215877430341', '116616686757371006325', '105040001333571511595', '114391345252268389899', '115391090911429381573', '116008246625614132322', '114394128653474707020', '101249926870736682397', '116631329713205553508', '117058794763073546749', '106453531239987697809', '102146889390183510402', '102406042148418309977', '103115473754659376168', '114764567692252908296', '114229157887417365950', '117862185251638475440', '109781522618867502975', '109533441517984298838', '110124387790658359507', '105374605403316311458', '100586461319763000734', '109851037140005639446', '102308976050370597645', '116529815860867544557', '116837025859476229246', '110502833538176908275', '113417663123715283363', '110329781365538654444', '104265751273656254845', '111873853137122484021', '106065832799617372150', '104541959256591361052', '109268388872941447574', '116251472122668771452', '108628946684172970453', '101081565020517352964', '105906240253049085314', '100192177206468421799', '110937682527218322953', '111910535419751834600', '105040363328817183176', '110155811430661032289', '110859635804619214661', '102792782688794235712', '100472608497932134515', '107139739165979847986', '117451772651046615793', '110963442024440969489', '108108574268475040130', '104548627795526843775', '110756035746392124587', '113843009097459888314', '101711168415133898421', '109123727761757726835', '100994114474811451452', '107602882044753150398', '112682502973212166227', '101828183984777718546', '101046441648631312966', '117456193734398291039', '104553134624556200907', '100774699436094132400', '101062235821996561929', '112464213406139907534', '115111485112027405250', '111609215580757432420', '111699855306814304937', '106667729510464379826', '105362990780240393762', '114005662762897105556', '113006904766271966789', '102554407414282880001', '105100415886680776080', '114231305708772868829', '112798516308771746920', '117484946558916657452', '110753959158779652314', '107874114351340563166', '107682748671253717847', '108215644829092784557', '114772539059130770030', '108859433586094924564', '102471833540021278727', '116488068558092164985'}
Best Community: {'103085617641546047794', '105983972765825582654', '104008498397143814321', '116069129876228452869', '100206580117558206798', '110818906428203616613', '115821088988821304653', '107600526986147096462', '102564113003603243689', '112430941066055023392', '115222563002590457138', '100522449505652854159', '109043363643479618868', '110636416447537218754', '115605662381863733754', '110532594016299719908', '117905615888134134883', '102055174418924323405', '116631487559659777008', '110110165036430755527', '108935847714537431415', '106335292785856130691', '111104711313327924255', '113810921951646816327', '106862439864387805380', '108437712626662980901', '111844389813156971099', '113713659416450317751', '100470707899575690169', '116360888126777490508', '105950757045919945391', '107297069075999612807', '117301528374194670415', '114048655018531559603', '113643090112432705267', '109810124520170491979', '105696962047510789343', '107939800249536527072', '112587601997064227832', '100955585302402188153', '108580907161587537569', '102161576005557030327', '114487996872622597923', '109901640320829375910', '115927899106503714271', '108956630584270925311', '115088305990912999514', '101526908034897155931', '110172963494544995584', '112146655822436564092', '113044833489208838770', '114351679993413153322', '112113988487550158255', '103236636893095396367', '103393927836955584318', '108890337036303809803', '100402799784346180906', '112507146553696510468', '113395463753108177195', '108466438257930289301', '104880223385257421591', '116451755910203629439', '104187985251742652997', '110024034614690336620', '102265258556584010669', '114785220185134792845', '102856175681672259705', '113133801731812323998', '111785429799913990623', '106789718866632421230', '107694665270784358035', '102135527356174747952', '101918005417074430961', '102822489199919962533', '116553658966777600813', '116916067691948954094', '101218427092583008397', '106781298439406035732', '112012758441096131122', '109293697249915280021', '114906363890460580293', '108410143835248335971', '114102741166154581911', '113099699163883796327', '112948207061035952633', '101789714027849358501', '115228458623832241233', '110809960320658812706', '113842374792124361280', '101320235608031237899', '105386936931525878828', '113379414028092937509', '118402690399847290674', '109967520038849452548', '116585456220331454017', '111259797317960550654', '113850464306462886487', '107124741061367501222', '112654691159864202638', '111864317276510841876', '108526083482689945107', '113076983544548715921', '118405547158623959680', '117002010749453374649', '115614543339071527650', '111675240625498665677', '107717032368182327599', '103430573789832257493', '104358638965775720143', '111314298459816170543', '118422220219201149802', '110341192524580638635', '113989952886968273012', '113442940438592941562', '112423034239931169075', '102351130228980890416', '106786386086265333019', '108914748660749767274', '108297553998847530028', '110210226355281840426', '117624835703222533996', '115657617912308874099', '115885921154061736538', '114348891676708148773', '114299216858963633581', '100807353194089283722', '106061471360654906232', '114459991754652351065', '116091603038680374060', '107892475110057537616', '108231047812960095546', '101069384135186045014', '100083028955154344373', '112642000069482682286', '111124425959607370134', '100120839460004190493', '101404856746976388325', '100216780741152472566', '109121093231737253660', '101760752085339536288', '101410122195380634804', '100950848196052292011', '113744096465132660966', '112711365376938908027', '106234983357218899594', '100388110885251393284', '117406818763930343074', '117837953513567834411', '109696823328035999197', '114705874526160887472', '101099043555291230180', '112049649493922318576', '116367417773416676104', '102891945288839443590', '117240901604444248810', '100395787848557598863', '109394666996058291279', '104391468748845850264', '112492398635541218430', '106830259006907960811', '109028152111716597975', '112598958640379596257', '115153602982620137655', '117429228147885173512', '100383019747717124280', '106670103227259568446', '116589404621633397162', '118103324998983230379', '113802492661269278824', '115313181123510104677', '107083689296537531989', '117214640788375374219', '116662490332889733728', '108887626087344947192', '106565520808381854435', '104274367698333588653', '115312105864775717810', '114169984275817586976', '114199830311642186845', '112491832238550690382', '116579469156242717036', '100503445049395037958', '108242549313656841308', '100178930508976624071', '105081453736917476473', '108036390356192350875', '103628803093688424918', '113429176956556076094', '116758913018400597582', '117340064210711030058', '102295859898506580790', '102212133422609504300', '118295179538595996227', '111687906119865907869', '104193326998424005381', '101848402622172881050', '117285538567884030406', '115828296697283958271', '114784305912078689958', '100612308713138879641', '107802694559496875227', '114988600847384075537', '117863911080490240617', '107641227894855833828', '100500119744852055191', '100833759927327771255', '112223195914391124840', '102762080013038288289', '112351803051481928831', '113320906788084117736', '108820254001675732749', '108771530203848479337', '118182922034561521748', '103219502575073799744', '114209940424380976762', '102361759968770796669', '116510480792365800072', '101775524093950000585', '108471679383630694341', '117243308942096267894', '107770719014033135433', '102784875591018218295', '117070650825702368748', '113365216324107073694', '101506005479263227133', '114703535207877261511', '109222649619386907473', '107728114908464493606', '107397720457451922206', '104234596650199473634', '110543512374816300955', '111830705293731589607', '110349374445064926715', '108855335985866781789', '110312069816295780207', '106571085958180090207', '106778708167731178299', '114748147950327557901', '103570777925162495872', '113945947368335957357', '113717658330338948909', '111743183651041343259', '111627773476375114188', '105388245811554998105', '116801661589145649547', '103682008765318235430', '110083239172662401442', '102128642240376328076', '118127469330342909494', '112767504279092696938', '112961182391659320786', '109288088889287080905', '114070188121765259793', '117883390047122693487', '108160014592005442630', '118047993757870344096', '109808044793507595992', '108165994712392486602', '117050655067097387667', '115640671255200872691', '108066434247238862035', '107324733857075561211', '103265555445303996151', '109355275783533316091', '112041740896366598673', '109860635281157364433', '115101082630334833989', '102538814375886928719', '110872085952009043727', '114433686568276956096', '114227730341518352760', '115440120575827240458', '105422087877293682363', '105910584587561659221', '104843480440041532115', '112713468396091301411', '109872702242469176656', '111645064066365579310', '117642388515316830086', '109325317945521443266', '107942601052714978885', '108031006751124771645', '110020802932509406288', '114896864199234401964', '114357641398383585672', '110381004137630232559', '101313870393891944100', '104103010111584382604', '116380481330340982520', '117027244111424127824', '115827797816285181810', '115007948222565533164', '109874281655455378704', '110541044751298877932', '112132683472859884862', '115651050756606395152', '100343638081229760786', '113090177541895906135', '107848492367799059517', '104601229931716205062', '101689156797827874965', '100879038045439382318', '103878199604928898324', '116430859868857398227', '110980222106600223500', '100304707154952267096', '103588755859096527423', '110148994717304662081', '103407037563276814933', '110993048162724217041', '112429367983955666966', '102775668694964741870', '116662524588410406518', '102587974207619025081', '108384282711609194269', '111667782428575235072', '117110141415523738557', '107601406689066602184', '107423393586054737949', '111939206204962925801', '108277109036982901512', '116560241333691707286', '102533430826019452036', '114656741955473202563', '112906377675358125555', '115015177093228995825', '108392874257392795974', '101104749713872661452', '102051931523765919580', '105272480783378662100', '104580090701236191463', '106922341079157141472', '100493217029803352331', '117683270429127095609', '105499901507557999939', '100355889137061302285', '113941150576123460188', '113507027851324199334', '116724078914347730484', '113249103748523881690', '113425271499653605473', '112907360375486569852', '105960964550097580716', '102207906011480187771', '110642956329633442874', '101488987322048121243', '113044036111832792788', '116906452830078311593', '112698907428224233154', '114823530265647957360', '118157252845179803688', '111676060684791105264', '118199345638439478323', '114349555051451444659', '117054461584798467248', '102306253366596188226', '111455032772204239244', '103950664341464933590', '112949339351415636585', '109784721506518436626', '102780611764664036841', '102666881946453474169', '108016441725644273613', '105345121025021682895', '117100846811767253894', '109884785067701667752', '117185814164795960031', '104962503140609223096', '108391539382517986167', '106594020821329986940', '112951350921473837988', '106843721032813292974', '106652325776405916359', '116946863510158002561', '102553018849143511709', '102381646319327699245', '115296133782384463813', '109520007633136545168', '112511117721123122864', '107340815531530888513', '104691907434326484516', '111851806474739809143', '105289108282206103712', '106088290528974423816', '114934119556971473070', '107121667693818827733', '104339199850528997633', '100699717378716861579', '100324115853988256500', '115876594992501739515', '117287104022975516677', '112102618131424526689', '105338421946824280297', '113048604335341521429', '109370339445646903198', '106083077810495092134', '113802856141719751969', '109179785755319022525', '115498601389347851431', '117399407734962607432', '109763829064998339023', '100052542427171975706', '102054284116307775555', '118240142534336634815', '108220043427586388533', '110838314772681308833', '102891800084135493340', '104436790834225837575', '116424320985167703911', '107338602034159648412', '114908183232134487513', '101925369393583775292', '116821922284936434850', '105337595774800924704', '112451458753099334659', '114925994582423850689', '109451217741957998413', '112537210666153429443', '113789418511501561468', '117891804554988019021', '103659460131440353612', '116118617640727585952', '107124640178243825999', '117391250933799358196', '100705376863368061378', '104514815615019967411', '102119766105463857182', '116461455312137661382', '107608319097010520457', '104864856583310648370', '107380238255855866313', '111061913357450699331', '107334468980085426372', '109461209891514397908', '111256456949791590967', '109021586569774358910', '111275181471058434170', '117808113386635990668', '114350055241792358502', '115108708327599745546', '105471410479054119779', '108892475208618187879', '107421445652242933389', '107703287565358011284', '112934144573309412993', '107271110849176930879', '113946715443571015123', '110475177528305258809', '105142636641076847892', '105173197114836469583', '111966229761273029582', '116121748464403301773', '110453508593950264889', '110880954597477213855', '104272998794846079690', '109409354188175331068', '111796536840889693718', '108239800393939000926', '104510803263877952696', '106702988390101234590', '100637965571079793889', '116961198944327874118', '103211666758098368302', '102725965111999647128', '117050782464143916222', '116072579252147464587', '112514538740659938817', '115776417314725525565', '116934740007089368524', '113958852862192390784', '118361077275130795621', '102456568275733928893', '102856794076704177243', '107491401010578747075', '111819591344528814997', '115684683315149912666', '111983209365704372878', '100751666490733922462', '108090814537493778110', '103336065428079920396', '112350004852536472576', '100311759100355395891', '101070789994681430489', '106035037488123549263', '101397434466557514583', '114523204386006825556', '113379704331516462260', '115279360559837356748', '103628877461145531895', '113379801850816839117', '105051428128756451894', '102262282833845535764', '110156710772075814684', '107758710519468101636', '111980850667948046585', '105824462968743940616', '108157384948659296278', '106234301239846716930', '108627200132724856862', '107651052918035405255', '108384242789025077136', '108863062546002618132', '101375345042522114581', '101936447724571159488', '114111114344340803262', '101737468215180221758', '100011766545706941913', '117262308886651008590', '110847495546182453537', '109840434146253830108', '112747491769356862024', '114124773835978468410', '116399094576674599575', '106667686405763883847', '101112236089154013563', '108980123652711816917', '100810105420144655302', '104211893388280500547', '110208194168430272797', '101350819212767050043', '103328005512132049229', '101157327020876174386', '116167259971809512913', '115425698124835613649', '102407719052471763681', '115711592532511139810', '101813110309442962520', '100307337322096093496', '116279801967044485012', '103242938255749850229', '114401920800685732207', '103231774650216255804', '100400127231058419381', '114270675619910932928', '107339400212386038908', '108702543814354616577', '109267629991576644390', '112250094664688730142', '101748459932715156516', '108304983057073244118', '106342886874854068282', '100718263022655478653', '103015275272334080080', '113822396383311931014', '112834683868657249072', '104406240238611439883', '116635289198298920617', '102393916713273790569', '109388470125186373110', '116066491411831847768', '114349992457405805985', '106392636769941129188', '102311159512403849202', '112109037472053281440', '101130130097385944393', '107940066694197392853', '100585730114585772259', '116773904380084763916', '114923188419363118654', '111331402743171753097', '102708408519777543299', '100941538271017241610', '114293297581802378481', '108514916037838780456', '117829697648472092439', '110254649706828884713', '113717162667623329835', '115269285424858286280', '111869838031914615917', '100181050791487122707', '116359233081331873695', '103378875504108210234', '117893707149088186215', '116814333375937466193', '102147470033180567699', '102576386516731141887', '117143331332564602963', '116331549425060376742', '110641203487015682036', '115778957712807809243', '110105010672727015819', '117882325264791300657', '112965879869910861114', '104045861600927576569', '112586596895584674610', '111170744088881982697', '100710763966857069466', '109932068330175625444', '114230422317297262372', '107696353690701835664', '117920838654464543191', '117699133525005797099', '103061432975121007243', '112651866577905736258', '100553673752535851250', '112765624140796008944', '117974401611027254615', '115530363081874541454', '115618118047855080505', '111481888241042874825', '115002045620889856189', '109404463594201341913', '100112269234874034910', '100704691671157299674', '106022156686010483843', '111067215649037664551', '115485752129964368319', '117068135501406370212', '101721306032980127550', '113292726172848917125', '113781210377244910645', '116459800133501939937', '113517984848491556493', '112634729907055593781', '115957228115499503140', '117236232427248671587', '117945967639625162800', '103752661801271283313', '109203711225628497689', '112795491937714201639', '113830054822611891364', '114364536167287968520', '109518051280084253316', '112957525079450219655', '106616167062695880015', '110485074151764531630', '115981891654314432186', '104161021547320344192', '117947158449104520291', '100595906934819408130', '103393969206825008695', '117744621803365419656', '115445308636699729019', '115761275898903496567', '115758139324460252489', '102010821862516060978', '115521135106884043757', '107493849176261920315', '106751860960742746888', '115441781832242886723', '108930627587591189279', '112053085005364926482', '113334935664959370822', '101925723538084674965', '106677800808808593513', '104966904116213333494', '118060195966019127791', '100639708142891868956', '109743112425227401468', '114636597059306061090', '105806968003199638088', '115788203615961124571', '118273109037645403066', '104628156308074219449', '110136891572864064561', '117353186427056974037', '114400511119467574783', '109296841906152067343', '117367241275888624336', '105491198217369216834', '101736815086497016308', '111466256514934258018', '106392885873234273031', '110484345841717870056', '118141802745849687319', '109549970198133970522', '104464470140910850908', '111068665214970137749', '114321485561609980665', '100959709623767771826', '107185228123306792635', '111071659079284118401', '106604387147856729612', '110308738942268982820', '117986212737011053082', '115533755168271820880', '105925069070808824643', '116510988620471676097', '106660876363786203340', '115869166436186726198', '113374298958308524635', '115544147945423124615', '112575232564216096899', '117310377246056990580', '118043829592310213261', '104943951214755667798', '107298068702134685497', '106707597873526726579', '100901832804895755927', '102498093896313721815', '109231007183413034882', '101377090286904569753', '115713723640709982141', '117826959184618140369', '101102502771584214511', '110675857134745144293', '115204171932989000617', '101696937665413838377', '102086534290849129199', '116498871689601303968', '111647289322049132217', '111447933061545774452', '100285309692991954022', '100344567711570576598', '100448114051092500782', '104974727181260741705', '104868278641190810516', '109633963466675615158', '115026095333460669876', '100063246738928262806', '114014689000530512576', '102965501513711820631', '101986497528485090988', '101418655998455018608', '109757555484036842084', '109098233643398100083', '117398515194371406729', '104962408468802230567', '108047277892067541887', '103897490090057192151', '107038828953565623062', '108951176045218524904', '111355506212110972947', '113743838565384547763', '115672069277082576149', '113617608054634558208', '103078626879493125465', '111727890913073750335', '100754028313919772364', '116876281329975376488', '106442901964082251751', '101780448162293270929', '106751865239636250677', '101642244653131974428', '105192677061341440846', '105821474933625556500', '110467454324237451111', '104128901456640183133', '104174700389617133341', '108327683265082415839', '113643819382205070335', '107316762598193972736', '118279204728860727329', '101001831790663475056', '105089516381499517057', '110814889310454488996', '103974843104730601251', '102106313289101920796', '102872107203971344174', '118049705635912101391', '103049141798017677869', '116144094558714760565', '114744671423279709175', '113277888478650798354', '110730365509389723487', '107559339820010435376', '103042480432691342046', '100511424886868385181', '112741416751893741218', '102448354819895151683', '104885672108365535825', '117938188071621547523', '105162725799373034144', '109706106571754369533', '104619895142856123914', '109105920659950215197', '101072103301498963796', '110382244520337618129', '117083456006505558797', '115707670022278371997', '107372985706885686485', '104232551349769528829', '107016997159540917774', '111798739622320607079', '103838028195630813374', '100478717606381903800', '117247318686568645096', '110417927631991624565', '104009340615730428416', '116029476839811343968', '114282676462075120936', '114772948782187847475', '117651774643392270654', '115928436777497136969', '114979500386341603694', '115004080420728801995', '115352097849004888092', '105797413006713978877', '115229199245309469877', '112334343185042501556', '115172554740032437260', '105467537505247249580', '113236866516484076039', '101220602750037954802', '116422777706058955112', '110286983427041996134', '109111279878079452197', '112839928232575925598', '101193056583517527218', '106273339563933376264', '101449450315094367296', '114963488299912916989', '114675350206316682857', '118155725276648270111', '112727109062249974070', '112853903043531887288', '116940884424568179932', '105479433073351096893', '103465217892778752840', '105252691164343053084', '101943489365769217009', '101498088359263703489', '105894161332552081587', '113808225621137327068', '106587035559803775200', '106463337288862596800', '117825295339716635042', '107956542328426568584', '105903703061182335928', '104803930997912739272', '107587418353268439974', '116108676200750113238', '116400617644285052650', '107503711650551312750', '109791360079032899690', '114925799597158174086', '108286263921738117445', '106841122899821140334', '111352437725051611547', '103499368545477438762', '105925211289252796561', '107747924975191934059', '101192901791315647199', '118379000352054505176', '101103609284409910695', '109222212746755608401', '105201041573402536484', '116110610760296046966', '102144829107435913268', '108803803930760680126', '113995336775175622962', '102428289972701355759', '103816454263149317813', '117347552181680291955', '103680670099621873416', '118126347004211225674', '115689341173030410816', '109513741512379966962', '113187722424689815195', '110984271834401042125', '103212862902782606680', '100366533624423286318', '109289627542578006490', '100338416356555677418', '112758572333558174892', '107869367842190695757', '113010057574887551545', '117062343334878218322', '118158611748005278397', '118349012209873454001', '108697145798331819385', '109732549439650531213', '109410276246212167772', '117020731342071444774', '118332325963861147052', '105430907454822229328', '117813305815871526324', '116103890818997216880', '110744376106713911838', '112010020831964503039', '103098434358721602320', '104667277078128870418', '107595032996809170615', '111865406298057803478', '113073215054203328021', '110887619384180016993', '117631291002527306874', '112861704527072013175', '106908331836151201623', '103671463955249277051', '105706275193740965021', '101180785258369501703', '104372947137063568851', '106533995026755446769', '105235982891000842675', '109540362899078571898', '105746412113298738559', '102986076055512882509', '113531709179430046754', '104278744492965064972', '114780872782699925545', '113929987947344584593', '106375868411606306755', '110377303220365650564', '111062027785725588006', '101039941022270733301', '111728229082355840321', '104055282140669357178', '110918985381416045566', '105111452923852483780', '112195570538252635521', '104620657571952151553', '118214473089093558880', '112870172108730162806', '112036755127250364487', '107201076172010330925', '107172105123146355769', '115780531832912166134', '103431522519630051490', '105882279523122707149', '106641128291701964922', '110756813358647360973', '101518828985025428512', '107200650789925971303', '117364815614284694552', '102511761068223633547', '105539328907201174698', '115402182177799748839', '116693343534612140737', '102581215567789793079', '103300780979307671423', '113666732470395511098', '103793122263656102886', '107225014302645898014', '105405164073085933649', '112613441273788009749', '114018458266696869320', '117391865202914371331', '112217333135124700456', '104273637018550353286', '108801513206763922061', '116505091683856866355', '105930059453649972924', '108404946609890366053', '104038736962385359147', '115199992059830945962', '109846388939363210134', '105531572091125534170', '114182683141718266004', '116815166158197128436', '116096939684164447967', '116917206097385720494', '102349508125899300817', '109825202712903749693', '101298888927652256538', '103271658321460326415', '118108217641010954726', '112568116239061192897', '113640366362186154437', '112115081533421476554', '110904997014640816057', '109007159585570428605', '114757865363657335371', '105593873227757106912', '112780998543415650563', '110227825177787298401', '106854238123341642906', '105611714909944747466', '105956829583781178821', '103864068523411491285', '115022780772073141556', '114516658060411141747', '101084737771867139860', '112172560861633437924', '105321851493537755459', '112431283073226518081', '109813685208474090507', '101203567753365023551', '111108984891262763610', '104147479804157835204', '104060836014624176394', '113887069715004391445', '118044376908149342094', '103139840303384684283', '115896555842913040390', '111337641235984146567', '107625345857675613220', '100523220308866129982', '111344990520493779847', '116384209366799734311', '112832090297105414569', '110991808346358724519', '107681374183889672043', '109968207334240085105', '104537635068375399232', '106036962723400014599', '105095083538991543994', '117888860379667170672', '116382593774911276357', '107602331615469684777', '111297634821932349367', '111266989382103162359', '109021227629631376783', '115256943004584273173', '113270145512314057550', '100171563150698613331', '102184626189688806940', '107502030864624273473', '101587186896046292337', '103479792518475690429', '115622985146937156441', '117670724715658778712', '103502381897519596800', '107727110167018571575', '115422073989837524816', '100344808789826432408', '108119196796540768681', '102608290911134841538', '115849908610702502616', '115276350249888861101', '100035895641954084486', '104564785377380458077', '109709394126759315718', '101177682308173325443', '112642704302723952564', '117480548464445754186', '110820794171599743746', '105979317336204687980', '107892885932666922895', '109310475977042579104', '108012991939099820186', '114661360755594021930', '103734732064355272020', '111598900159849088556', '116461855266768909081', '114185096114689994575', '104921271849983300661', '106834837414881158707', '105793127072274127014', '111658282423202680334', '106320258275465885055', '106923855802416316776', '106272354161023755998', '106106821658261203524', '117420006386340912415', '106251634780868246272', '110280259585948855266', '108381099591316727400', '103911573473057004850', '112874532811644023513', '105460934303599234411', '109384186250816893593', '117034424844577685859', '103858182422156373492', '110221152747073977468', '116619476151524917929', '100820038296735086358', '117949506784356423186', '112392276745470905312', '112645899502384266957', '109160338783101857528', '109676361246887439309', '103384657030123661742', '111519951519463790264', '100258334011087649533', '111027284544490817916', '111692855156383085305', '116990168708635853323', '101085875807154110238', '112181800892549889428', '103208040491033452139', '103215118204676654992', '111033954577349017322', '108170087434309944356', '104448901441432262634', '100520841574704742376', '116753481369792868776', '108792603836025430903', '111870339209463346799', '113216750740091805639', '105669202966609927896', '114496209629631684030', '102854726469095524211', '109227086945342747033', '116322354022892290682', '103067858337492764713', '116052139727639000293', '110014685968790342778', '116370179202551456108', '111336937779863024336', '103491854087443454711', '111556733810295164705', '103546606846558525849', '103787783829767594677', '101718721235666083805', '101488623257152792677', '100635228299423960203', '113387502193006912911', '116120938490032484765', '115378179760848312148', '106005729437549906434', '114152668059803275565', '114543596587502011441', '118142346047065153994', '100552218167336051484', '100063647165166042817', '117047618366534042599', '103123795700371648708', '100514976758718052215', '109646466456271611206', '111080954163363728197', '103044839780614975811', '103930930607634729491', '115102606592602380333', '108454829510235503094', '102936476334085491942', '105539295017962507152', '102398927265160061191', '105515975605932175218', '104533391525647218558', '101439625009414417068', '105625444509721186627', '108908905437388916616', '112308028838141112135', '102832384031835295225', '114890266437236125712', '106918301462404216919', '113358423478528482619', '104647864569202645940', '110528452190679522178', '100335232852148192677', '103486647639446357540', '109487502860976000657', '103749144675480351495', '102092059340022443197', '103169210114021506842', '114885988123556734014', '115970973847207435589', '116733443859739561547', '106356216317225465122', '104059123234065044277', '109309820197217064848', '105384382055180690224', '111822662218646303443', '114658682617855410839', '109380621360536492062', '111009305741828693706', '114487977061531530095', '113860361393063419375', '105999429413391306532', '105966990120964747635', '115820495930321001915', '113940922878228019997', '101839940767317645124', '106213194246287288177', '113280093803891650025', '108519736684761921614', '106743071953429960847', '101306547542435535669', '101624344463617124819', '112695269892669446372', '118150773446660123426', '103584168297226033201', '101269853254586693559', '107551093427664071536', '106927010583023043830', '112701567053801268154', '110784139642131978630', '114966033299734299079', '107561724776777887565', '106692802992355014970', '102405942903346350638', '105780367195036563164', '101086809289767457386', '100926443266255107413', '100239801091531764729', '116967313757199197659', '110321435299854167627', '103641985767984421846', '105589394487766031696', '109063472013788047799', '103814936460553919349', '101879578737460479558', '105933807834119736876', '114446699242256208339', '106524992359194053598', '108118191463262999664', '108417239551693556944', '105427758442353241851', '104743181121186301547', '109113390312993726342', '106957534413244462148', '112881359012447217903', '101983494889420739895', '111789349839968119214', '110678933650847365451', '102147854886428419246', '112255723503311909994', '108121345461041701573'}

Comparison between Ground Truth and Predicted Communities¶

In [35]:
from sklearn.metrics import adjusted_rand_score, normalized_mutual_info_score

def create_node_to_community_map(community_dict):
    node_to_community = {}
    for community_id, nodes in community_dict.items():
        for node in nodes:
            node_to_community[node] = community_id
    return node_to_community

def compute_clustering_metrics(predicted_communities, ground_truth_communities, egoNet):
    predicted_map = create_node_to_community_map(predicted_communities)
    ground_truth_map = create_node_to_community_map(ground_truth_communities)

    # Get a sorted list of all nodes
    all_nodes = sorted(set(predicted_map.keys()).union(ground_truth_map.keys()))

    # Generate label lists
    predicted_labels = [predicted_map.get(node, -1) for node in all_nodes]
    ground_truth_labels = [ground_truth_map.get(node, -1) for node in all_nodes]

    nmi = normalized_mutual_info_score(ground_truth_labels, predicted_labels)
    ari = adjusted_rand_score(ground_truth_labels, predicted_labels)

    print(f"Comparison of Ground Truth and Predicted Communities in EgoNet {egoNet}")
    print(f"Normalized Mutual Information (NMI): {nmi}")
    print(f"Adjusted Rand Index (ARI): {ari}\n")

for i in range(len(egoGraphs)):
    ego_network = egoGraphs[i][0].to_undirected()
    partition = {}
    index = 0

    for comm in communities[i][0]:
        partition[index] = comm
        index += 1

    compute_clustering_metrics(partition, circles[i][0], egoGraphs[i][1])
Comparison of Ground Truth and Predicted Communities in EgoNet 104987932455782713675
Normalized Mutual Information (NMI): 0.19403520403569208
Adjusted Rand Index (ARI): 0.19686440834868474

Comparison of Ground Truth and Predicted Communities in EgoNet 106724181552911298818
Normalized Mutual Information (NMI): 0.05413457217566299
Adjusted Rand Index (ARI): 0.019785027742963302

Comparison of Ground Truth and Predicted Communities in EgoNet 108541235642523883716
Normalized Mutual Information (NMI): 0.0189739735552111
Adjusted Rand Index (ARI): -0.017029970219935665

Comparison of Ground Truth and Predicted Communities in EgoNet 118107045405823607895
Normalized Mutual Information (NMI): 0.1896276593605004
Adjusted Rand Index (ARI): 0.05715372152982848

Comparison of Ground Truth and Predicted Communities in EgoNet 116825083494890429556
Normalized Mutual Information (NMI): 0.01697851016362992
Adjusted Rand Index (ARI): -0.005932338114257768

Comparison of Ground Truth and Predicted Communities in EgoNet 110809308822849680310
Normalized Mutual Information (NMI): 0.049596845172673036
Adjusted Rand Index (ARI): 0.0012734716551011688

Comparison of Ground Truth and Predicted Communities in EgoNet 107489144252174167638
Normalized Mutual Information (NMI): 0.08090012334546343
Adjusted Rand Index (ARI): 0.02165376375875226

Comparison of Ground Truth and Predicted Communities in EgoNet 101626577406833098387
Normalized Mutual Information (NMI): 0.1673143166891657
Adjusted Rand Index (ARI): 0.0254089963566502

Variables until now :

  • *G* (Graph) : Graph of the full Dataset
  • *egoGraphs* (Ego Graph List) : List of Ego Graphs selected
  • *circles* (List) : List of tuples composed by Dictionary of all the circles of the egoNets and a string with the circles name;
  • *followers* (list) : List of all the followers of the EgoNets;
  • *components* (list) : List of tuples with strongly and weakly connected components of the EgoNets;
  • *sortedDegreeCentralities* (list) : List sorted (Ascended) Degree Centrality of all EgoNets;
  • *eigenveactorCentralities* (list) : List sorted (Ascended) Eigenvector Centrality of all EgoNets;
  • *closenessCentralities* (list) : List sorted (Ascended) Closeness Centrality of all EgoNets;
  • *betweennessCentralities* (list) : List sorted (Ascended) Betweenness Centrality of all EgoNets;
  • *edgeBetweennessCentralities* (list) : List sorted (Ascended) Edge Betweenness Centrality of all EgoNets;
  • *duplicate* (list) : List of duplicated nodes of EgoNet;